19 lines
245 B
C++
19 lines
245 B
C++
#ifndef NAME_ELEMENT_H
|
|
#define NAME_ELEMENT_H
|
|
|
|
#include <string>
|
|
|
|
class NameElement
|
|
{
|
|
public:
|
|
NameElement(const std::string& name);
|
|
~NameElement();
|
|
|
|
std::string getFullName() const;
|
|
|
|
private:
|
|
std::string m_name;
|
|
};
|
|
|
|
#endif // NAME_ELEMENT_H
|