You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
414 B
C++
32 lines
414 B
C++
9 years ago
|
#include "addressbook.h"
|
||
|
#include "data/addressbookdata.h"
|
||
|
#include "addressbookform.h"
|
||
|
#include "addressbookgrid.h"
|
||
|
|
||
|
|
||
|
Addressbook::Addressbook()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void Addressbook::initServiceUi()
|
||
|
{
|
||
|
AddressbookGrid *grid = new AddressbookGrid();
|
||
|
AddressbookForm *form = new AddressbookForm();
|
||
|
|
||
|
m_service = new Service<AddressbookData>;
|
||
|
m_ui = grid;
|
||
|
((AddressbookGrid *) m_ui)->setForm(form);
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|