Files
cmake-examples/01-basic/E-installing/inc/Hello.h
2015-11-22 14:22:12 +00:00

11 lines
92 B
C++

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