diff options
Diffstat (limited to 'timers.cpp')
-rw-r--r-- | timers.cpp | 14 |
1 files changed, 9 insertions, 5 deletions
@@ -1,12 +1,16 @@ -#include <memory> -#include <sstream> -#include <vector> -#include "exception.h" + #include "timers.h" + +#include "exception.h" #include "tools.h" -#include "i18n.h" #include "autoptr.h" +// STL headers need to be before VDR tools.h (included by <vdr/plugin.h>) +#include <sstream> + +#include <vdr/plugin.h> +#include <vdr/menu.h> + static bool operator<( cTimer const& left, cTimer const& right ) { return left.Compare( right ) < 0; |