diff options
Diffstat (limited to 'vdr-vdrmanager/helpers.h')
-rw-r--r-- | vdr-vdrmanager/helpers.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/vdr-vdrmanager/helpers.h b/vdr-vdrmanager/helpers.h index ad6d17b..d610084 100644 --- a/vdr-vdrmanager/helpers.h +++ b/vdr-vdrmanager/helpers.h @@ -11,6 +11,7 @@ #include <iostream> #include <iomanip> #include <sstream> +#include <stack> using namespace std; @@ -57,4 +58,8 @@ private: static string Error(const string &error); static string SetTimerIntern(char c, string params); static int RecordingLengthInSeconds(cRecording* recording); + static std::string cHelpers::ConvertWeekdays(int v); + static int cHelpers::ConvertWeekdays(std::string v); + static std::stack<int> cHelpers::ConvertToBinary(int v); + }; |