mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-07 06:09:52 -06:00
10 lines
98 B
C++
10 lines
98 B
C++
|
|
#include "someclass.h"
|
|
|
|
int main(int, char**)
|
|
{
|
|
SomeClass sc;
|
|
sc.someMethod();
|
|
return 0;
|
|
}
|