summaryrefslogtreecommitdiff
path: root/tvapi/libtv/tv/CTvDmx.h (plain)
blob: 4cefc71489cdaab8367a3bd655a31658e95e49df
1#ifndef _C_TV_DMX_H
2#define _C_TV_DMX_H
3#include "CTvEv.h"
4#include "CTvLog.h"
5#include "am_dmx.h"
6
7class CTvDmx {
8public:
9 CTvDmx();
10 ~CTvDmx();
11 int Open(AM_DMX_OpenPara_t &para);
12 int Close();
13 int SetSource(AM_DMX_Source_t source);
14private:
15 int mDmxDevId;
16};
17#endif
18