Files
cmake-examples/01-basic/E-installing/include/Hello.h
2017-07-02 21:20:36 +01:00

11 lines
92 B
C++

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