blob: 5a3148dda12f09a7b87c59283657486681ed4c02 (
plain)
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
|
#include "EObjA.hpp"
#include "EObjB.hpp"
#include "LObjA.hpp"
#include "LObjB.hpp"
#include "ObjA.hpp"
#include "ObjB.hpp"
#include "SObjA.hpp"
#include "SObjB.hpp"
#include "subGlobal/GObj.hpp"
int main(int argv, char** args)
{
subGlobal::GObj gObj;
ObjA objA;
ObjB objB;
LObjA lObjA;
LObjB lObjB;
EObjA eObjA;
EObjB eObjB;
SObjA sObjA;
SObjB sObjB;
return 0;
}
// Header in global subdirectory
#include "subGlobal/moc_GObj.cpp"
|