-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommon.hpp
29 lines (21 loc) · 822 Bytes
/
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
////////////////////////////////////////////////////////////////////////////////
//! \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.
////////////////////////////////////////////////////////////////////////////////
// Application common headers.
#include "Resource.h"
#endif // APP_COMMON_HPP