24 lines
333 B
C++
24 lines
333 B
C++
|
/*
|
||
|
* 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 */
|