Files
haiku-beta6/src/apps/processcontroller/PCWindow.h
T
Augustin Cavalier f65814780e ProcessController: Relicense as MIT.
We received permission from the original author and all relevant contributors
(see the mailing list) to do this. (As best as can be established, BeUnited
did not modify the source code after importing besides adding their copyright.)
2020-10-10 15:57:49 -04:00

24 lines
369 B
C++

/*
* Copyright 2000, Georges-Edouard Berenger. All rights reserved.
* Distributed under the terms of the MIT License.
*/
#ifndef _PCWINDOW_H_
#define _PCWINDOW_H_
#include <Window.h>
class PCWindow : public BWindow {
public:
PCWindow();
~PCWindow();
virtual bool QuitRequested();
private:
bool fDraggersAreDrawn;
};
#endif // _PCWINDOW_H_