/* * See the README file for copyright information and how to reach the authors. * * $Id: setup-softlog-menu.h,v 1.2 2007-02-11 10:31:27 lucke Exp $ */ #ifndef __SETUP_SOFTLOG_MENU_H #define __SETUP_SOFTLOG_MENU_H #ifndef STAND_ALONE #include #include #include #else #include "VdrReplacements.h" #endif #include "setup-softlog.h" /* --------------------------------------------------------------------------- */ class cMenuSetupSoftlog : public cMenuSetupPage { private: char newLogFileName[256]; int newLogPriorities; int newAppendMode; protected: virtual eOSState ProcessKey(eKeys Key); virtual void Store(void); public: cMenuSetupSoftlog(cPlugin *plugin = NULL, const char *name = NULL); virtual ~cMenuSetupSoftlog(); }; #endif