X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=lib%2Fbase%2Feconfig.h;h=e69de29bb2d1d6434b8b29ae775ad8c2e48c5391;hp=d9f3becda1e84f54bc6aeffd861cd67e7271efcb;hb=ddc3964ed95d01e72229dc9af968a327cd84e56c;hpb=d63d2c3c6cbbd574dda4f8b00ebe6c661735edd5 diff --git a/lib/base/econfig.h b/lib/base/econfig.h index d9f3bec..e69de29 100644 --- a/lib/base/econfig.h +++ b/lib/base/econfig.h @@ -1,27 +0,0 @@ -#ifndef __econfig_h -#define __econfig_h - -#include - -class eConfig: public NConfig -{ - static eConfig *instance; - int ppin; -public: - int locked; - static eConfig *getInstance() { return instance; } - void setParentalPin( int pin ) - { - ppin = pin; - setKey("/elitedvb/pins/parentallock", ppin ); - } - int getParentalPin() { return ppin; } - bool pLockActive() - { - return ppin && locked; - } - eConfig(); - ~eConfig(); -}; - -#endif