diff options
author | Sascha Volkenandt <sascha (at) akv-soft (dot) de> | 2007-05-29 15:50:21 +0000 |
---|---|---|
committer | Sascha Volkenandt <sascha (at) akv-soft (dot) de> | 2007-05-29 15:50:21 +0000 |
commit | 3235a22cc6a3bb2ace6a21e7fa028d21b5fdd476 (patch) | |
tree | 56b091b33f190a165d8eb850ce33f2b408f11445 /tasks.cpp | |
parent | f84624023496baa4f1e5206dba818f14ba844467 (diff) | |
download | vdr-plugin-live-3235a22cc6a3bb2ace6a21e7fa028d21b5fdd476.tar.gz vdr-plugin-live-3235a22cc6a3bb2ace6a21e7fa028d21b5fdd476.tar.bz2 |
- moved everything from boost to stdext.h
- using std::tr1 instead of boost where available
Diffstat (limited to 'tasks.cpp')
-rw-r--r-- | tasks.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,18 +1,19 @@ #include <algorithm> -#include <boost/bind.hpp> #include <vdr/channels.h> #include <vdr/i18n.h> #include <vdr/menu.h> #include <vdr/recording.h> #include "exception.h" #include "recordings.h" +#include "stdext.h" #include "tasks.h" #include "tools.h" namespace vdrlive { using namespace std; -using namespace boost; +using namespace std::tr1; +using namespace std::tr1::placeholders; StickyTask::StickyTask() { |