You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
202 B

#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