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/IHasFile.h
2016-05-24 16:55:19 +02:00

18 lines
222 B
C++

#ifndef IHASFILE_H
#define IHASFILE_H
#include <string>
class IHasFile {
public:
virtual void setFileName(const std::string& file) = 0;
virtual const std::string& getFileName() const = 0;
};
#endif // IHASFILE_H