mirror of
https://github.com/ttroy50/cmake-examples.git
synced 2025-12-18 20:24:35 +03:00
11 lines
100 B
C++
11 lines
100 B
C++
#ifndef __SUBLIB_1_H__
|
|
#define __SUBLIB_1_H__
|
|
|
|
class sublib1
|
|
{
|
|
public:
|
|
void print();
|
|
};
|
|
|
|
#endif
|