mirror of
https://github.com/ksherlock/profuse.git
synced 2025-01-30 00:34:01 +00:00
d4a7107bde
git-svn-id: https://profuse.googlecode.com/svn/branches/v2@404 aa027e90-d47c-11dd-86d7-074df07e0730
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 |