mirror of
https://github.com/ksherlock/profuse.git
synced 2025-01-30 16:30:36 +00:00
23 lines
314 B
C
23 lines
314 B
C
|
#ifndef __NUFX_FILEENTRY_H__
|
||
|
#define __NUFX_FILEENTRY_H__
|
||
|
|
||
|
#include "Entry.h"
|
||
|
#include <NufxLib.h>
|
||
|
|
||
|
namespace NuFX {
|
||
|
|
||
|
|
||
|
class FileEntry : public Entry
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
private:
|
||
|
|
||
|
NuRecordIdx _recordID;
|
||
|
unsigned _flags; // threads
|
||
|
size_t _size; // data size
|
||
|
};
|
||
|
}
|
||
|
|
||
|
|
||
|
#endif
|