16 lines
212 B
C++
16 lines
212 B
C++
#ifndef IHASNAME_H
|
|
#define IHASNAME_H
|
|
|
|
#include <string>
|
|
|
|
class IHasName {
|
|
public:
|
|
|
|
virtual void setName(const std::string& name) = 0;
|
|
|
|
virtual const std::string& getName() const = 0;
|
|
|
|
};
|
|
|
|
#endif // IHASNAME_H
|