#ifndef X_H #define X_H #include "Channel.h" class X { protected: Channel *m_chan; public: X(Channel *chan); ~X(); virtual void updatePre() { }; virtual void updatePost() { }; Channel *getChannel(); }; #endif//X_H