This repository has been archived on 2020-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
Files
IndoorMap/mapview/model/IHasName.h
2016-05-24 16:55:19 +02:00

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