OSCAR-code/oscar/SleepLib/loader_plugins/viatom_loader.h
sawinglogz 3fbc1777c5 Make Viatom loader MT_OXIMETER and remove MT_MULTI.
There's way too much logic throughout the code that makes assumptions
based on MT_OXIMETER.
2020-01-23 19:10:25 -05:00

48 lines
1.3 KiB
C++

/* SleepLib Viatom Loader Header
*
* Copyright (c) 2019 The OSCAR Team (written by dave madden <dhm@mersenne.com>)
*
* This file is subject to the terms and conditions of the GNU General Public
* License. See the file COPYING in the main directory of the source code
* for more details. */
#ifndef VIATOMLOADER_H
#define VIATOMLOADER_H
#include "SleepLib/machine_loader.h"
const QString viatom_class_name = "Viatom";
const int viatom_data_version = 1;
/*! \class ViatomLoader
\brief Unfinished stub for loading Viatom Sleep Ring / Wrist Pulse Oximeter data
*/
class ViatomLoader : public MachineLoader
{
public:
ViatomLoader() { m_type = MT_OXIMETER; }
virtual ~ViatomLoader() { }
virtual bool Detect(const QString & path);
virtual int Open(const QString & path);
virtual int OpenFile(const QString & filename);
static void Register();
virtual int Version() { return viatom_data_version; }
virtual const QString &loaderName() { return viatom_class_name; }
virtual MachineInfo newInfo() {
return MachineInfo(MT_OXIMETER, 0, viatom_class_name, QObject::tr("Viatom"), QString(), QString(), QString(), QObject::tr("Viatom Software"), QDateTime::currentDateTime(), viatom_data_version);
}
//Machine *CreateMachine();
protected:
private:
};
#endif // VIATOMLOADER_H