initial commit

This commit is contained in:
kazu
2016-05-24 16:55:19 +02:00
commit 13a89df8d6
77 changed files with 7454 additions and 0 deletions

17
mapview/model/IHasFile.h Normal file
View File

@@ -0,0 +1,17 @@
#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