X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/ce7f5539437fff074b1c3388d575660f24011f66..9458c6fcf07885c97e8b627b035c848267ee2d0c:/lib/driver/avswitch.h diff --git a/lib/driver/avswitch.h b/lib/driver/avswitch.h new file mode 100644 index 00000000..d8417692 --- /dev/null +++ b/lib/driver/avswitch.h @@ -0,0 +1,19 @@ +#ifndef __avswitch_h +#define __avswitch_h + +class eAVSwitch +{ + static eAVSwitch *instance; + + int avsfd; +protected: +public: + eAVSwitch(); + ~eAVSwitch(); + + static eAVSwitch *getInstance(); + + void setColorFormat(int format); +}; + +#endif