Add more missing includes and forward declarations

master
Piotr Dziwinski 2015-08-13 22:47:04 +02:00
parent 3f57aab406
commit 26e4ec0ae2
4 changed files with 8 additions and 0 deletions

View File

@ -23,6 +23,7 @@
#include <stdlib.h> #include <stdlib.h>
#include <unistd.h> #include <unistd.h>
#include <time.h>
void CSystemUtilsLinux::Init() void CSystemUtilsLinux::Init()

View File

@ -21,6 +21,9 @@
#include "object/object_interface_type.h" #include "object/object_interface_type.h"
class CPhysics;
class CMotion;
/** /**
* \class CMovableObject * \class CMovableObject
* \brief Interface for objects that can move (have an engine) * \brief Interface for objects that can move (have an engine)

View File

@ -21,6 +21,8 @@
#include "object/object_interface_type.h" #include "object/object_interface_type.h"
#include <string>
enum class TraceColor enum class TraceColor
{ {
Default = -1, Default = -1,

View File

@ -20,6 +20,8 @@
#include "level/robotmain.h" #include "level/robotmain.h"
#include <array>
#include <string>
#include <vector> #include <vector>