summaryrefslogtreecommitdiff
path: root/tv_callback.h (plain)
blob: c024237d72d072e624477ae5f0a02ef6b704a219
1#ifndef TV_CALLBACK
2#define TV_CALLBACK
3#include "TvPlay.h"
4class TvCallback : public TvPlayObserver {
5public:
6 TvCallback(void *data)
7 {
8 mPri = data;
9 }
10 ~TvCallback() {}
11 void onTvEvent (int32_t msgType, const Parcel &p);
12
13private:
14 void *mPri;
15};
16#endif
17
18