cmake-examples/01-basic/D-shared-library/inc/Hello.h

11 lines
92 B
C++

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