20 lines
324 B
C++
20 lines
324 B
C++
#ifndef ADVENT_DVEREB_FILE_H
|
|
#define ADVENT_DVEREB_FILE_H
|
|
|
|
#include <string>
|
|
|
|
class File {
|
|
public:
|
|
File(const std::string &set_filename, unsigned long set_size);
|
|
virtual ~File();
|
|
|
|
const std::string& Filename() const;
|
|
virtual unsigned long Size() const;
|
|
|
|
protected:
|
|
unsigned long size;
|
|
std::string filename;
|
|
};
|
|
|
|
#endif
|