mirror of
https://github.com/ttroy50/cmake-examples.git
synced 2025-12-18 12:14:36 +03:00
11 lines
92 B
C++
11 lines
92 B
C++
#ifndef __HELLO_H__
|
|
#define __HELLO_H__
|
|
|
|
class Hello
|
|
{
|
|
public:
|
|
void print();
|
|
};
|
|
|
|
#endif
|