21 lines
275 B
C++
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
|