This repository has been archived on 2021-06-27. You can view files and clone it, but cannot push or open issues or pull requests.
modetw/include/generic.hpp

21 lines
275 B
C++

#ifndef GENERIC_HPP
#define GENERIC_HPP
#include <string>
class Generic
{
public:
Generic(const std::string&);
const inline std::string& GetPath() const;
protected:
std::string _path;
};
const inline std::string& Generic::GetPath() const
{
return _path;
}
#endif