MaxNetJob Class Reference

MaxNetJob Class Reference

#include <maxnet_file.h>

Class Description

Network Job.

+ Inheritance diagram for MaxNetJob:

Public Member Functions

bool WriteJob (Job *job, CJobText &jobText)
 
bool ReadJob (Job *job, CJobText &jobText)
 
bool WriteServers (int count, const JobServer *servers)
 
bool ReadServers (int count, JobServer *servers)
 
bool WriteFrames (int count, const JOBFRAMES *frames)
 
bool ReadFrames (int count, JOBFRAMES *frames)
 
- Public Member Functions inherited from MaxNetEngine
bool WriteNetStatus (NetworkStatus *status)
 
bool WriteCfg (ConfigurationBlock *cfg)
 
bool WriteAlertData (AlertData *alerts)
 
bool WriteJobText (CJobText &jobText)
 
bool WriteSceneInfo (SceneInfo *info)
 
bool WriteWeekSchedule (WeekSchedule *ws)
 
bool ReadNetStatus (NetworkStatus *status)
 
bool ReadCfg (ConfigurationBlock *cfg)
 
bool ReadAlertData (AlertData *alerts)
 
int ReadJobTextCount ()
 
bool ReadJobText (CJobText &jobText)
 
bool ReadSceneInfo (SceneInfo *info)
 
bool ReadWeekSchedule (WeekSchedule *ws)
 
- Public Member Functions inherited from MaxNetFile
 MaxNetFile ()
 
virtual ~MaxNetFile ()
 
virtual bool OpenRead (const MCHAR *name)
 
virtual bool OpenWrite (const MCHAR *name)
 
virtual void Close ()
 
void Reset ()
 
MCHARFirstBlank (MCHAR *line)
 
MCHARFirstNonblank (MCHAR *line)
 
MCHARNextValue (MCHAR *ln)
 
bool LocateSection (MCHAR *section)
 
MCHARLocateValue (MCHAR *section, MCHAR *var, bool rescan=true)
 
MCHARGetLine (MCHAR *destination=0)
 
bool ReadFilename (MCHAR *ptr, MCHAR *filename)
 
bool Write (MCHAR *line)
 
bool WriteHeader (MCHAR *hdr)
 
bool WritePair (MCHAR *var, float value)
 
bool WritePair (MCHAR *var, int value)
 
bool WritePair (MCHAR *var, bool value)
 
bool WritePair (MCHAR *var, short value)
 
bool WritePair (MCHAR *var, DWORD value)
 
bool WritePair (MCHAR *var, size_t value)
 
bool WritePair (MCHAR *var, MCHAR *value)
 
bool WritePair (MCHAR *var, SYSTEMTIME *value)
 
bool WritePairHex (MCHAR *var, DWORD value)
 
bool ReadPair (MCHAR *section, MCHAR *var, float *value)
 
bool ReadPair (MCHAR *section, MCHAR *var, int *value)
 
bool ReadPair (MCHAR *section, MCHAR *var, bool *value)
 
bool ReadPair (MCHAR *section, MCHAR *var, short *value)
 
bool ReadPair (MCHAR *section, MCHAR *var, DWORD *value)
 
bool ReadPair (MCHAR *section, MCHAR *var, size_t *value)
 
bool ReadPair (MCHAR *section, MCHAR *var, MCHAR *value)
 
bool ReadPair (MCHAR *section, MCHAR *var, SYSTEMTIME *value)
 
bool ReadPairHex (MCHAR *section, MCHAR *var, DWORD *value)
 

Additional Inherited Members

- Static Public Member Functions inherited from MaxHeapOperators
static UtilExport voidoperator new (size_t size)
 Standard new operator used to allocate objects If there is insufficient memory, an exception will be thrown. More...
 
static UtilExport voidoperator new (size_t size, const std::nothrow_t &e)
 Standard new operator used to allocate objects if there is insufficient memory, NULL will be returned. More...
 
static UtilExport voidoperator new (size_t size, const char *filename, int line)
 New operator used to allocate objects that takes the filename and line number where the new was called If there is insufficient memory, an exception will be thrown. More...
 
static UtilExport voidoperator new (size_t size, int block_type, const char *filename, int line)
 New operator used to allocate objects that takes the type of memory, filename and line number where the new was called If there is insufficient memory, an exception will be thrown. More...
 
static UtilExport voidoperator new (size_t size, const std::nothrow_t &e, const char *filename, int line)
 New operator used to allocate objects that takes the filename and line number where the new was called If there is insufficient memory, NULL will be returned. More...
 
static UtilExport voidoperator new (size_t size, unsigned long flags)
 New operator used to allocate objects that takes extra flags to specify special operations If there is insufficient memory, an exception will be thrown. More...
 
static UtilExport voidoperator new (size_t size, const std::nothrow_t &e, unsigned long flags)
 New operator used to allocate objects that takes extra flags to specify special operations If there is insufficient memory, NULL will be returned. More...
 
static UtilExport voidoperator new[] (size_t size)
 New operator used to allocate arrays of objects If there is insufficient memory, an exception will be thrown. More...
 
static UtilExport voidoperator new[] (size_t size, const std::nothrow_t &e)
 New operator used to allocate arrays of objects If there is insufficient memory, NULL will be returned. More...
 
static UtilExport voidoperator new[] (size_t size, const char *filename, int line)
 New operator used to allocate arrays of objects If there is insufficient memory, an exception will be thrown. More...
 
static UtilExport voidoperator new[] (size_t size, int block_type, const char *filename, int line)
 New operator used to allocate arrays of objects. More...
 
static UtilExport voidoperator new[] (size_t size, const std::nothrow_t &e, const char *filename, int line)
 New operator used to allocate arrays of objects If there is insufficient memory, NULL will be returned. More...
 
static UtilExport voidoperator new[] (size_t size, unsigned long flags)
 New operator used to allocate arrays of objects If there is insufficient memory, an exception will be thrown. More...
 
static UtilExport voidoperator new[] (size_t size, const std::nothrow_t &e, unsigned long flags)
 New operator used to allocate arrays of objects If there is insufficient memory, NULL will be returned. More...
 
static UtilExport void operator delete (void *ptr)
 Standard delete operator used to deallocate an object If the pointer is invalid, an exception will be thrown. More...
 
static UtilExport void operator delete (void *ptr, const std::nothrow_t &e)
 Standard delete operator used to deallocate an object If the pointer is invalid, nothing will happen. More...
 
static UtilExport void operator delete (void *ptr, const char *filename, int line)
 Delete operator used to deallocate an object that takes the filename and line number where the delete was called If the pointer is invalid, an exception will be thrown. More...
 
static UtilExport void operator delete (void *ptr, int block_type, const char *filename, int line)
 Delete operator used to deallocate an object that takes the type of memory, filename and line number where the delete was called If the pointer is invalid, an exception will be thrown. More...
 
static UtilExport void operator delete (void *ptr, const std::nothrow_t &e, const char *filename, int line)
 Delete operator used to deallocate an object that takes the filename and line number where the delete was called If the pointer is invalid, nothing will happen. More...
 
static UtilExport void operator delete (void *ptr, unsigned long flags)
 Delete operator used to deallocate an object that takes extra flags to specify special operations If the pointer is invalid, an exception will be thrown. More...
 
static UtilExport void operator delete (void *ptr, const std::nothrow_t &e, unsigned long flags)
 Delete operator used to deallocate an object that takes extra flags to specify special operations If the pointer is invalid, nothing will happen. More...
 
static UtilExport void operator delete[] (void *ptr)
 Standard delete operator used to deallocate an array of objects If the pointer is invalid, an exception will be thrown. More...
 
static UtilExport void operator delete[] (void *ptr, const std::nothrow_t &e)
 Standard delete operator used to deallocate an array of objects If the pointer is invalid, nothing will happen. More...
 
static UtilExport void operator delete[] (void *ptr, const char *filename, int line)
 Delete operator used to deallocate an array of objects that takes the filename and line number where the delete was called If the pointer is invalid, an exception will be thrown. More...
 
static UtilExport void operator delete[] (void *ptr, int block_type, const char *filename, int line)
 Delete operator used to deallocate an array of objects that takes the type of memory, filename and line number where the delete was called If the pointer is invalid, an exception will be thrown. More...
 
static UtilExport void operator delete[] (void *ptr, const std::nothrow_t &e, const char *filename, int line)
 Delete operator used to deallocate an array of objects that takes the filename and line number where the delete was called If the pointer is invalid, nothing will happen. More...
 
static UtilExport void operator delete[] (void *ptr, unsigned long flags)
 Delete operator used to deallocate an array of objects that takes extra flags to specify special operations If the pointer is invalid, an exception will be thrown. More...
 
static UtilExport void operator delete[] (void *ptr, const std::nothrow_t &e, unsigned long flags)
 Delete operator used to deallocate an array of objects that takes extra flags to specify special operations If the pointer is invalid, an exception will be thrown. More...
 
static UtilExport voidoperator new (size_t size, void *placement_ptr)
 Placement new operator. More...
 
static UtilExport void operator delete (void *ptr, void *placement_ptr)
 Placement delete operator. More...
 
- Protected Attributes inherited from MaxNetFile
MCHAR line [1024]
 
FILE * f
 
bool read
 

Member Function Documentation

bool WriteJob ( Job job,
CJobText jobText 
)
bool ReadJob ( Job job,
CJobText jobText 
)
bool WriteServers ( int  count,
const JobServer servers 
)
bool ReadServers ( int  count,
JobServer servers 
)
bool WriteFrames ( int  count,
const JOBFRAMES frames 
)
bool ReadFrames ( int  count,
JOBFRAMES frames 
)