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.
15 lines
194 B
15 lines
194 B
7 years ago
|
#include "IncA.hpp"
|
||
|
#include "IncB.hpp"
|
||
8 years ago
|
#include "StyleA.hpp"
|
||
7 years ago
|
#include "StyleB.hpp"
|
||
8 years ago
|
|
||
|
int main(int argv, char** args)
|
||
|
{
|
||
7 years ago
|
StyleA styleA;
|
||
|
StyleB styleB;
|
||
7 years ago
|
IncA incA;
|
||
|
IncB incB;
|
||
|
|
||
8 years ago
|
return 0;
|
||
|
}
|