diff options
author | Stijn Buys <ingar@osirion.org> | 2010-09-16 12:51:28 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2010-09-16 12:51:28 +0000 |
commit | 3392cb739f212aea561eceb1781cd2e10e55c932 (patch) | |
tree | abf6a138f057d04dc13dc208a7f1d876527b2b33 | |
parent | e55638d081e2e1ff6fbc06e0e8ac0381a04308e7 (diff) |
added files for inventory window
-rw-r--r-- | src/client/inventorywindow.cc | 19 | ||||
-rw-r--r-- | src/client/inventorywindow.h | 26 |
2 files changed, 45 insertions, 0 deletions
diff --git a/src/client/inventorywindow.cc b/src/client/inventorywindow.cc new file mode 100644 index 0000000..b6ef82b --- /dev/null +++ b/src/client/inventorywindow.cc @@ -0,0 +1,19 @@ +/* + client/inventorywindow.cc + This file is part of the Osirion project and is distributed under + the terms and conditions of the GNU General Public License version 2 +*/ + +#include "client/inventorywindow.h" + +namespace client { + +InventoryWindow::InventoryWindow(ui::Widget *parent) : ui::Window(parent) +{ +} + +InventoryWindow::~InventoryWindow() +{ +} + +} // namespace client diff --git a/src/client/inventorywindow.h b/src/client/inventorywindow.h new file mode 100644 index 0000000..ec6ad02 --- /dev/null +++ b/src/client/inventorywindow.h @@ -0,0 +1,26 @@ +/* + client/inventorywindow.h + This file is part of the Osirion project and is distributed under + the terms of the GNU General Public License version 2 +*/ + +#ifndef __INCLUDED_CLIENT_INVENTORYWINDOW_H__ +#define __INCLUDED_CLIENT_INVENTORYWINDOW_H__ + +#include "ui/window.h" + +namespace client { + +/** + * @brief an inventory window widget + */ +class InventoryWindow : public ui::Window +{ +public: + InventoryWindow(ui::Widget *parent = 0); + ~InventoryWindow(); + +}; // class InventoryWindow + +} +#endif // __INCLUDED_CLIENT_INVENTORYWINDOW_H__ |