21 lines
247 B
C
21 lines
247 B
C
|
|
#ifndef RAWFILE_H
|
||
|
|
#define RAWFILE_H
|
||
|
|
|
||
|
|
#include <QString>
|
||
|
|
|
||
|
|
struct p_RawFile
|
||
|
|
{
|
||
|
|
const char *name;
|
||
|
|
int length;
|
||
|
|
const char *buffer;
|
||
|
|
};
|
||
|
|
|
||
|
|
struct RawFile : p_RawFile
|
||
|
|
{
|
||
|
|
QString name;
|
||
|
|
QString path;
|
||
|
|
int length;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // RAWFILE_H
|