Made sure every file includes common.h directly or indirectly.
Also made sure common.h is included before any system headers.
This commit is contained in:
parent
f0445295b5
commit
154a474289
|
@ -15,6 +15,8 @@
|
|||
#ifndef CARCHMISCWINDOWS_H
|
||||
#define CARCHMISCWINDOWS_H
|
||||
|
||||
#include "common.h"
|
||||
|
||||
//! Miscellaneous win32 functions.
|
||||
class CArchMiscWindows {
|
||||
public:
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
#ifndef XARCH_H
|
||||
#define XARCH_H
|
||||
|
||||
#include "common.h"
|
||||
#include "stdstring.h"
|
||||
|
||||
//! Generic thread exception
|
||||
|
|
|
@ -17,7 +17,6 @@
|
|||
|
||||
#include "common.h"
|
||||
#include "IArchMultithread.h"
|
||||
#include "IInterface.h"
|
||||
#include "stdlist.h"
|
||||
#include <stdarg.h>
|
||||
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
#ifndef CSTRING_H
|
||||
#define CSTRING_H
|
||||
|
||||
#include "common.h"
|
||||
#include "stdstring.h"
|
||||
|
||||
// use standard C++ string class for our string class
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
#ifndef ILOGOUTPUTTER_H
|
||||
#define ILOGOUTPUTTER_H
|
||||
|
||||
#include "IInterface.h"
|
||||
#include "CLog.h"
|
||||
|
||||
//! Outputter interface
|
||||
|
|
|
@ -17,7 +17,6 @@
|
|||
|
||||
#include "CMutex.h"
|
||||
#include "BasicTypes.h"
|
||||
#include "IArchMultithread.h"
|
||||
|
||||
class CStopwatch;
|
||||
|
||||
|
|
|
@ -15,6 +15,8 @@
|
|||
#ifndef CLOCK_H
|
||||
#define CLOCK_H
|
||||
|
||||
#include "common.h"
|
||||
|
||||
class CMutex;
|
||||
class CCondVarBase;
|
||||
|
||||
|
|
|
@ -15,7 +15,6 @@
|
|||
#ifndef CTHREAD_H
|
||||
#define CTHREAD_H
|
||||
|
||||
#include "common.h"
|
||||
#include "IArchMultithread.h"
|
||||
|
||||
class IJob;
|
||||
|
|
|
@ -15,6 +15,8 @@
|
|||
#ifndef CTIMERTHREAD_H
|
||||
#define CTIMERTHREAD_H
|
||||
|
||||
#include "common.h"
|
||||
|
||||
class CThread;
|
||||
|
||||
//! A timer thread
|
||||
|
|
Loading…
Reference in New Issue