-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommon.hpp
36 lines (26 loc) · 1.03 KB
/
Common.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
////////////////////////////////////////////////////////////////////////////////
//! \file Common.hpp
//! \brief Wrapper include file for the most common header files.
//! \author Chris Oldwood
// Check for previous inclusion
#ifndef APP_COMMON_HPP
#define APP_COMMON_HPP
#if _MSC_VER > 1000
#pragma once
#endif
////////////////////////////////////////////////////////////////////////////////
// Application documentation.
//
////////////////////////////////////////////////////////////////////////////////
// System headers.
#include <Core/Common.hpp> // Core library common headers.
#include <WCL/Common.hpp> // Windows C++ library common headers.
#include <MDBL/Common.hpp> // Memory Database library common headers.
////////////////////////////////////////////////////////////////////////////////
// Application common headers.
#include "Resource.h"
////////////////////////////////////////////////////////////////////////////////
// Forward declarations for the most common types.
class CFCMDoc;
class CFCMDB;
#endif // APP_COMMON_HPP