mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-02 03:39:43 -06:00
14 lines
165 B
C++
14 lines
165 B
C++
#include "a/classa.h"
|
|
#include "b/classb.h"
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
ClassA a;
|
|
a.slotDoSomething();
|
|
|
|
ClassB b;
|
|
b.slotDoSomething();
|
|
|
|
return 0;
|
|
}
|