xref: /haiku/src/apps/debuganalyzer/gui/main_window/WaitObjectsPage.h (revision 820dca4df6c7bf955c46e8f6521b9408f50b2900)
1 /*
2  * Copyright 2009, Axel Dörfler, axeld@pinc-software.de.
3  * Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
4  * Distributed under the terms of the MIT License.
5  */
6 #ifndef MAIN_WAIT_OBJECTS_PAGE_H
7 #define MAIN_WAIT_OBJECTS_PAGE_H
8 
9 
10 #include "AbstractWaitObjectsPage.h"
11 #include "Model.h"
12 #include "main_window/MainWindow.h"
13 
14 
15 class MainWindow::WaitObjectsPage
16 	: public AbstractWaitObjectsPage<Model, Model::WaitObjectGroup,
17 		Model::WaitObject> {
18 public:
19 								WaitObjectsPage(MainWindow* parent);
20 
21 private:
22 			MainWindow*			fParent;
23 };
24 
25 
26 #endif	// MAIN_WAIT_OBJECTS_PAGE_H
27