#ifndef GENERIC_HPP #define GENERIC_HPP #include 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