mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
Move duplicate declarations of EDFType to edfparser and combine them
This commit is contained in:
parent
3458b2b445
commit
acf04f4b45
@ -26,6 +26,9 @@ const char AnnoSep = 20;
|
|||||||
const char AnnoDurMark = 21;
|
const char AnnoDurMark = 21;
|
||||||
const char AnnoEnd = 0;
|
const char AnnoEnd = 0;
|
||||||
|
|
||||||
|
// EDFType is used by all the edf loaders - resmed and sleepstyle, so far
|
||||||
|
enum EDFType { EDF_UNKNOWN, EDF_BRP, EDF_PLD, EDF_SAD, EDF_EVE, EDF_CSL, EDF_AEV, EDF_RT };
|
||||||
|
|
||||||
/*! \struct EDFHeader
|
/*! \struct EDFHeader
|
||||||
\brief Represents the EDF+ header structure, used as a place holder while processing the text data.
|
\brief Represents the EDF+ header structure, used as a place holder while processing the text data.
|
||||||
\note More information on the EDF+ file format can be obtained from http://edfplus.info
|
\note More information on the EDF+ file format can be obtained from http://edfplus.info
|
||||||
|
@ -16,7 +16,8 @@
|
|||||||
#include "SleepLib/profiles.h"
|
#include "SleepLib/profiles.h"
|
||||||
#include "SleepLib/loader_plugins/edfparser.h"
|
#include "SleepLib/loader_plugins/edfparser.h"
|
||||||
|
|
||||||
enum EDFType { EDF_UNKNOWN, EDF_BRP, EDF_PLD, EDF_SAD, EDF_EVE, EDF_CSL, EDF_AEV };
|
// moved to edfparser.h
|
||||||
|
// enum EDFType { EDF_UNKNOWN, EDF_BRP, EDF_PLD, EDF_SAD, EDF_EVE, EDF_CSL, EDF_AEV };
|
||||||
|
|
||||||
EDFType lookupEDFType(const QString & filename);
|
EDFType lookupEDFType(const QString & filename);
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
#include "SleepLib/loader_plugins/edfparser.h"
|
#include "SleepLib/loader_plugins/edfparser.h"
|
||||||
|
|
||||||
//enum EDFType { EDF_UNKNOWN, EDF_BRP, EDF_PLD, EDF_SAD, EDF_EVE, EDF_CSL, EDF_AEV };
|
//enum EDFType { EDF_UNKNOWN, EDF_BRP, EDF_PLD, EDF_SAD, EDF_EVE, EDF_CSL, EDF_AEV };
|
||||||
enum EDFType { EDF_UNKNOWN, EDF_RT };
|
//enum EDFType { EDF_UNKNOWN, EDF_RT }; // moved to edfparser.h
|
||||||
|
|
||||||
// EDFType lookupEDFType(const QString & filename);
|
// EDFType lookupEDFType(const QString & filename);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user