1 /* 2 * Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef THREAD_WAIT_OBJECTS_PAGE_H 6 #define THREAD_WAIT_OBJECTS_PAGE_H 7 8 9 #include "AbstractWaitObjectsPage.h" 10 #include "ThreadModel.h" 11 #include "thread_window/ThreadWindow.h" 12 13 14 class ThreadWindow::WaitObjectsPage 15 : public AbstractWaitObjectsPage<ThreadModel, ThreadModel::WaitObjectGroup, 16 Model::ThreadWaitObject> { 17 public: 18 WaitObjectsPage(); 19 }; 20 21 22 23 #endif // THREAD_WAIT_OBJECTS_PAGE_H 24