/* * status.h: A plugin for the Video Disk Recorder * * See the README file for copyright information and how to reach the author. * */ #ifndef __status_h_ #define __status_h_ #include // --- cStatusMarkAd class cStatusMarkAd : public cStatus { private: const char *bindir; const char *logodir; protected: virtual void Recording(const cDevice *Device, const char *Name, const char *FileName, bool On); public: cStatusMarkAd(const char *BinDir,const char *LogoDir); }; #endif