mirror of
https://github.com/ttroy50/cmake-examples.git
synced 2025-12-18 20:24:35 +03:00
16 lines
202 B
C++
16 lines
202 B
C++
#ifndef __SUBLIB_2_H__
|
|
#define __SUBLIB_2_H__
|
|
|
|
#include <iostream>
|
|
|
|
class sublib2
|
|
{
|
|
public:
|
|
void print()
|
|
{
|
|
std::cout << "Hello header only sub-library 2!" << std::endl;
|
|
}
|
|
};
|
|
|
|
#endif
|