blob: 164bfa3054e32b85327f6332a8102e4face72d38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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 */
|