17 lines
277 B
C++
17 lines
277 B
C++
|
|
#ifndef FILELOADER_H
|
|
#define FILELOADER_H FILELOADER_H
|
|
|
|
#include <string>
|
|
|
|
class FileLoader
|
|
{
|
|
public:
|
|
virtual void * loadFile(
|
|
const std::string & fullPath,
|
|
const std::string & shortPath,
|
|
int & size) = 0;
|
|
};
|
|
|
|
#endif
|