1 /* 2 * Copyright 2000, Georges-Edouard Berenger. All rights reserved. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef _PCWINDOW_H_ 6 #define _PCWINDOW_H_ 7 8 9 #include <Window.h> 10 11 12 class PCWindow : public BWindow { 13 public: 14 PCWindow(); 15 ~PCWindow(); 16 17 virtual bool QuitRequested(); 18 19 private: 20 bool fDraggersAreDrawn; 21 }; 22 23 #endif // _PCWINDOW_H_ 24