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