You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
453 B
27 lines
453 B
7 years ago
|
#include "EObjA.hpp"
|
||
|
#include "EObjB.hpp"
|
||
|
#include "LObjA.hpp"
|
||
|
#include "LObjB.hpp"
|
||
8 years ago
|
#include "ObjA.hpp"
|
||
|
#include "ObjB.hpp"
|
||
7 years ago
|
#include "SObjA.hpp"
|
||
|
#include "SObjB.hpp"
|
||
|
#include "subGlobal/GObj.hpp"
|
||
8 years ago
|
|
||
|
int main(int argv, char** args)
|
||
|
{
|
||
7 years ago
|
subGlobal::GObj gObj;
|
||
8 years ago
|
ObjA objA;
|
||
|
ObjB objB;
|
||
7 years ago
|
LObjA lObjA;
|
||
|
LObjB lObjB;
|
||
|
EObjA eObjA;
|
||
|
EObjB eObjB;
|
||
|
SObjA sObjA;
|
||
|
SObjB sObjB;
|
||
8 years ago
|
return 0;
|
||
|
}
|
||
|
|
||
|
// Header in global subdirectory
|
||
7 years ago
|
#include "subGlobal/moc_GObj.cpp"
|