2012-01-24 15:51:11 +00:00
|
|
|
/*
|
|
|
|
|
|
|
|
SleepLib RemStar M-Series Loader Header
|
|
|
|
|
|
|
|
Author: Mark Watkins <jedimark64@users.sourceforge.net>
|
|
|
|
License: GPL
|
|
|
|
Copyright: (c)2012 Mark Watkins
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MSERIES_LOADER_H
|
|
|
|
#define MSERIES_LOADER_H
|
|
|
|
|
|
|
|
#include "SleepLib/machine.h"
|
|
|
|
#include "SleepLib/machine_loader.h"
|
|
|
|
#include "SleepLib/profiles.h"
|
|
|
|
|
|
|
|
//********************************************************************************************
|
|
|
|
/// IMPORTANT!!!
|
|
|
|
//********************************************************************************************
|
|
|
|
// Please INCREMENT the following value when making changes to this loaders implementation.
|
|
|
|
//
|
|
|
|
const int mseries_data_version=2;
|
|
|
|
//
|
|
|
|
//********************************************************************************************
|
|
|
|
|
|
|
|
/*! \class MSeries
|
|
|
|
\brief RemStar M-Series customized machine object
|
|
|
|
*/
|
|
|
|
class MSeries:public CPAP
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
MSeries(Profile *p,MachineID id=0);
|
|
|
|
virtual ~MSeries();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const int mseries_load_buffer_size=1024*1024;
|
|
|
|
|
|
|
|
|
|
|
|
const QString mseries_class_name=STR_MACH_MSeries;
|
|
|
|
|
|
|
|
class MSeriesLoader : public MachineLoader
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
MSeriesLoader();
|
|
|
|
virtual ~MSeriesLoader();
|
|
|
|
|
|
|
|
//! \brief Opens M-Series block device
|
|
|
|
virtual int Open(QString & file,Profile *profile);
|
|
|
|
|
|
|
|
//! \brief Returns the database version of this loader
|
|
|
|
virtual int Version() { return mseries_data_version; }
|
|
|
|
|
|
|
|
//! \brief Return the ClassName, in this case "MSeries"
|
|
|
|
virtual const QString & ClassName() { return mseries_class_name; }
|
|
|
|
|
|
|
|
//! \brief Create a new PRS1 machine record, indexed by Serial number.
|
|
|
|
Machine *CreateMachine(QString serial,Profile *profile);
|
|
|
|
|
|
|
|
//! \brief Register this Module to the list of Loaders, so it knows to search for PRS1 data.
|
|
|
|
static void Register();
|
|
|
|
protected:
|
|
|
|
QHash<QString,Machine *> MachList;
|
2012-02-03 13:52:07 +00:00
|
|
|
quint32 epoch;
|
2012-01-24 15:51:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // MSERIES_LOADER_H
|