24 lines
643 B
C++
24 lines
643 B
C++
#include "requirementListPanel.h"
|
|
|
|
using namespace std;
|
|
using namespace gui;
|
|
//--------------------------------------------------------------
|
|
/* Constructor */
|
|
RequirementListPanel::RequirementListPanel(wxWindow *parentWindow, dBus::Bus &bus)
|
|
: wxPanel(parentWindow, wxID_ANY, wxDefaultPosition, wxSize(300, -1), wxSIMPLE_BORDER)
|
|
, m_bus(bus)
|
|
{
|
|
// Initialization
|
|
|
|
// Creating controls
|
|
createControls();
|
|
|
|
// Post initialization
|
|
}
|
|
//--------------------------------------------------------------
|
|
/* Creating controls */
|
|
void RequirementListPanel::createControls()
|
|
{
|
|
}
|
|
//--------------------------------------------------------------
|