27 lines
378 B
C++
27 lines
378 B
C++
//
|
|
// C++ Implementation: mycardspixmaplabel
|
|
//
|
|
// Description:
|
|
//
|
|
//
|
|
// Author: FThauer FHammer <f.thauer@web.de>, (C) 2007
|
|
//
|
|
// Copyright: See COPYING file that comes with this distribution
|
|
//
|
|
//
|
|
#include "myhpavatarbutton.h"
|
|
|
|
|
|
using namespace std;
|
|
|
|
MyHPAvatarButton::MyHPAvatarButton(QWidget* parent)
|
|
: QPushButton(parent)
|
|
{
|
|
|
|
}
|
|
|
|
MyHPAvatarButton::~MyHPAvatarButton()
|
|
{
|
|
}
|
|
|