Design Pattern Examples
Overview of object-oriented design patterns
pch.h
Go to the documentation of this file.
1
9
10#ifndef PCH_H
11#define PCH_H
12
13// add headers that you want to pre-compile here
14#include "framework.h"
15
16#include <stdbool.h>
17#include <stdlib.h>
18#include <string.h>
19#include <memory.h>
20
21#ifndef _countof
22#define _countof(w) (sizeof(w)/sizeof((w)[0]))
23#endif
24
25#endif //PCH_H
Header for including Windows headers. Used only on Windows.