1 /* 2 * Copyright 2011, Axel Dörfler, axeld@pinc-software.de. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef CAPTURE_WINDOW_H 6 #define CAPTURE_WINDOW_H 7 8 9 #include <Window.h> 10 11 12 class CaptureView; 13 14 15 class CaptureWindow : public BWindow { 16 public: 17 CaptureWindow(); 18 virtual ~CaptureWindow(); 19 20 virtual void MessageReceived(BMessage* message); 21 22 private: 23 CaptureView* fCaptureView; 24 }; 25 26 27 #endif // CAPTURE_WINDOW_H 28