18 lines
222 B
C++
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
|