diff options
Diffstat (limited to 'misc/avdetector.h')
-rw-r--r-- | misc/avdetector.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/misc/avdetector.h b/misc/avdetector.h new file mode 100644 index 0000000..0b8bb81 --- /dev/null +++ b/misc/avdetector.h @@ -0,0 +1,22 @@ +/* + * File: avdetector.h + * Author: savop + * + * Created on 26. Oktober 2009, 13:02 + */ + +#ifndef _AVDETECTOR_H +#define _AVDETECTOR_H + +#include "../database/object.h" + +class cAudioVideoDetector { +public: + cAudioVideoDetector(){}; + virtual ~cAudioVideoDetector(){}; + int detectVideoProperties(cUPnPResource* Resource, const char* Filename); +private: +}; + +#endif /* _AVDETECTOR_H */ + |