2018-04-23 21:13:27 +02:00
|
|
|
#include "IncA.hpp"
|
|
|
|
#include "IncB.hpp"
|
2017-07-20 19:35:53 +02:00
|
|
|
#include "StyleA.hpp"
|
2018-01-26 17:06:56 +01:00
|
|
|
#include "StyleB.hpp"
|
2017-07-20 19:35:53 +02:00
|
|
|
|
|
|
|
int main(int argv, char** args)
|
|
|
|
{
|
2018-01-26 17:06:56 +01:00
|
|
|
StyleA styleA;
|
|
|
|
StyleB styleB;
|
2018-04-23 21:13:27 +02:00
|
|
|
IncA incA;
|
|
|
|
IncB incB;
|
|
|
|
|
2017-07-20 19:35:53 +02:00
|
|
|
return 0;
|
|
|
|
}
|