Move duplicate declarations of EDFType to edfparser and combine them

This commit is contained in:
Phil Olynyk 2022-02-18 14:39:38 -05:00
parent 3458b2b445
commit acf04f4b45
3 changed files with 6 additions and 2 deletions

View File

@ -26,6 +26,9 @@ const char AnnoSep = 20;
const char AnnoDurMark = 21;
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
\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

View File

@ -16,7 +16,8 @@
#include "SleepLib/profiles.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);

View File

@ -17,7 +17,7 @@
#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_RT };
//enum EDFType { EDF_UNKNOWN, EDF_RT }; // moved to edfparser.h
// EDFType lookupEDFType(const QString & filename);