E8WATS
Fork of RemoteIR by
Diff: RemoteIR.h
- Revision:
- 0:ec264f4ce158
- Child:
- 3:dfed23b157e6
diff -r 000000000000 -r ec264f4ce158 RemoteIR.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/RemoteIR.h Tue Aug 17 08:50:54 2010 +0000 @@ -0,0 +1,25 @@ +/** + * IR remote common class (Version 0.0.3) + * + * Copyright (C) 2010 Shinichiro Nakamura (CuBeatSystems) + * http://shinta.main.jp/ + */ + +#ifndef _REMOTE_IR_H_ +#define _REMOTE_IR_H_ + +class RemoteIR { +public: + + typedef enum { + UNKNOWN, + NEC, + AEHA, + SONY + } Format; + +private: + RemoteIR(); +}; + +#endif