dbxConditions.h
Doc
#include <oedbx/dbxCommon.h>

class AS_EXPORT DbxConditions
{ public :
DbxConditions(InStream ins, int4 address);
~DbxConditions();
 
const char * GetText() const { return Text; }
 
void ShowResults(OutStream outs) const;
 
private :
void init();
void readConditions(InStream ins);
 
//data
int4 Address, Length;
char * Text;
};

Description

DbxConditions(InStream ins, int4 address)

This constructor automatically reads in the conditions object. The address is stored in the file header((22) message dbx files / (23) folder.dbx).

const char * GetText()

Returns the text stored in the object.

void ShowResults(OutStream outs)

I used this function to log my results while I tried to decode the dbx file format.


Home of OE dbx file format