diff options
Diffstat (limited to 'p2pvr/lib/fileSink.h')
-rw-r--r-- | p2pvr/lib/fileSink.h | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/p2pvr/lib/fileSink.h b/p2pvr/lib/fileSink.h deleted file mode 100644 index 840f995..0000000 --- a/p2pvr/lib/fileSink.h +++ /dev/null @@ -1,24 +0,0 @@ -#ifndef FILESINK_H -#define FILESINK_H - -#include <boost/filesystem/path.hpp> -#include <stdio.h> -#include <dvb.h> -#include <visibility.h> - -namespace P2PVR { -class DLL_PUBLIC FileSink : public RawDataClient { - public: - FileSink(const boost::filesystem::path & path); - FileSink(int fd); - ~FileSink(); - - bool NewData(const Data & data, const Ice::Current &); - - private: - FILE * const file; -}; -} - -#endif - |