ivideocapturer.h 205 B

123456789101112
  1. #ifndef IVIDEOCAPTURER_H
  2. #define IVIDEOCAPTURER_H
  3. class ivideocapturer
  4. {
  5. public:
  6. ivideocapturer();
  7. virtual bool open(int left, int top, int width, int height) = 0;
  8. };
  9. #endif // IVIDEOCAPTURER_H