diff options
Diffstat (limited to 'src/devices/mem24/gui/mem24_group_ui.cpp')
-rw-r--r-- | src/devices/mem24/gui/mem24_group_ui.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/devices/mem24/gui/mem24_group_ui.cpp b/src/devices/mem24/gui/mem24_group_ui.cpp new file mode 100644 index 0000000..751e5a7 --- /dev/null +++ b/src/devices/mem24/gui/mem24_group_ui.cpp @@ -0,0 +1,16 @@ +/*************************************************************************** + * Copyright (C) 2006 Nicolas Hadacek <hadacek@kde.org> * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + ***************************************************************************/ +#include "mem24_group_ui.h" + +#include "mem24_hex_view.h" + +Device::HexView *Mem24::GroupUI::createHexView(const HexEditor &editor, QWidget *parent) const +{ + return new HexView(editor, parent); +} |