dbxFolderInfo.h
Doc
#include <oedbx/dbxIndexedInfo.h>

const int1 fiiIndex = 0x00, fiiParentIndex = 0x01, fiiName = 0x02, fiiFlags = 0x06;
 
class AS_EXPORT DbxFolderInfo : public DbxIndexedInfo
{ public :
DbxFolderInfo(InStream ins, int4 address) : DbxIndexedInfo(ins, address) { }
 
const char * GetIndexText(int1 index) const;
IndexedInfoDataType GetIndexDataType(int1 index) const;
};

Description

DbxFolderInfo(InStream ins, int4 address)

The DbxFolderInfo class is a child class of the DbxIndexedInfo class. This class is only derived to simplify the access. Some const values are defined for the GetValue function.

const char * GetIndexText(int1 index)

Returns a short description(if available) of the stored value. Used for the ShowResults function inherited by the base class.

IndexedInfoDataType GetIndexDataType(int1 index)

Returns the data type of the stored value. The type IndexedInfoDataType is defined in the base class.


Home of OE dbx file format