forked from tomthorogood/TurnLeftLib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTurnLeft.h
More file actions
39 lines (31 loc) · 655 Bytes
/
TurnLeft.h
File metadata and controls
39 lines (31 loc) · 655 Bytes
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
37
38
39
/*
* TurnLeftLib_Forward.h
*
* Created on: Jul 17, 2012
* Author: tom
*/
#ifndef TURNLEFTLIB_FORWARD_H_
#define TURNLEFTLIB_FORWARD_H_
#include <TurnLeftLib/Utils/HungryVector.h>
#include <TurnLeftLib/Utils/PackedData.h>
#include <TurnLeftLib/Utils/PtrArray.h>
namespace TurnLeft
{
namespace Utils
{
typedef unsigned char* CharArray;
typedef const char* c_str;
class CommonWords;
class Explosion;
class Log;
class RandomCharSet;
class WordAggregator;
}
namespace Exceptions
{
class FileNotFoundException;
class UnparseableEnumException;
class MissingParameterException;
}
}
#endif /* TURNLEFTLIB_FORWARD_H_ */