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