Files
cmake-examples/01-basic/E-installing/include/installing/Hello.h
Thom Troy b81da6f68b Update to minimum CMake 3.5
And modernise some examples.
2018-03-18 17:23:57 +00:00

11 lines
92 B
C++

#ifndef __HELLO_H__
#define __HELLO_H__
class Hello
{
public:
void print();
};
#endif