-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFixPathInclude.h
More file actions
45 lines (31 loc) · 794 Bytes
/
FixPathInclude.h
File metadata and controls
45 lines (31 loc) · 794 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
40
41
42
43
44
45
#ifndef _FIXPATHINCLUDE_H
#define _FIXPATHINCLUDE_H
// Date, Time & Version defines
#define FIXPATH_DATE 20170530
#define FIXPATH_TIME 194659
#define FIXPATH_VERSION 5
// Context define declarations
// Forward extern class declarations
//@START_USER1
#include <string>
using namespace std;
//@END_USER1
// Defines needed for relations between templated classes
// Forward class declarations
class FixPath;
class Dir;
// Needed ClassBuilder include files
#include "CB_MultiOwned.h"
// Make sure the inline implementations are skipped
#ifdef CB_INLINES
#undef CB_INLINES
#endif
// Include classes, for declarations
#include "Dir.h"
#include "FixPath.h"
// Include classes again, for inline implementation
#define CB_INLINES
#include "Dir.h"
//@START_USER2
//@END_USER2
#endif