1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-10-21 06:10:16 +08:00
Files
CMake/Example/Hello/hello.h
2001-12-19 15:25:10 -05:00

12 lines
85 B
C++

#ifndef _hello_h
#define _hello_h
class Hello
{
public:
void Print();
};
#endif