blob: fafc5414cbf5ef140705ec3d65233de1298b1293 [file] [log] [blame]
#ifndef SHARED_HPP
#define SHARED_HPP
#include <string>
class Shared {
public:
Shared();
std::string GetString();
private:
std::string str;
};
#endif