2018-04-23 21:13:27 +02:00

15 lines
194 B
C++

#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;
}