blob: 1611f9744d1475619dd95127f09e4c033adfd338 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "IncA.hpp"
#include "IncB.hpp"
#include "StyleA.hpp"
#include "StyleB.hpp"
int main(int argv, char** args)
{
StyleA styleA;
StyleB styleB;
IncA incA;
IncB incB;
return 0;
}
|