diff options
| author | Simon Robertshaw <simon@hardwired.org.uk> | 2012-01-08 17:39:03 (GMT) |
|---|---|---|
| committer | Simon Robertshaw <simon@hardwired.org.uk> | 2012-01-08 17:39:03 (GMT) |
| commit | b0ea52690ba56a0d0602ad8674b7e5ab2ba3e778 (patch) | |
| tree | 7d72e0509f4d2643d3be837a337d088ca5949c73 /src/interface/Panel.cpp | |
| download | powder-b0ea52690ba56a0d0602ad8674b7e5ab2ba3e778.zip powder-b0ea52690ba56a0d0602ad8674b7e5ab2ba3e778.tar.gz | |
Initial
Diffstat (limited to 'src/interface/Panel.cpp')
| -rw-r--r-- | src/interface/Panel.cpp | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/interface/Panel.cpp b/src/interface/Panel.cpp new file mode 100644 index 0000000..164bfa3 --- /dev/null +++ b/src/interface/Panel.cpp @@ -0,0 +1,23 @@ +/* + * Panel.cpp + * + * Created on: Jan 8, 2012 + * Author: Simon + */ + +#include "interface/Panel.h" + +namespace ui { + +Panel::Panel(int x, int y, int width, int height): + Component(x, y, width, height) +{ + // TODO Auto-generated constructor stub + +} + +Panel::~Panel() { + // TODO Auto-generated destructor stub +} + +} /* namespace ui */ |
