mirror of
https://github.com/Kitware/CMake.git
synced 2026-03-14 05:20:50 -05:00
10 lines
127 B
C++
10 lines
127 B
C++
#include "StyleA.hpp"
|
|
#include "StyleB.hpp"
|
|
|
|
int main(int argv, char** args)
|
|
{
|
|
StyleA styleA;
|
|
StyleB styleB;
|
|
return 0;
|
|
}
|