qucs_s/qucs/element.cpp

36 lines
1.2 KiB
C++
Raw Normal View History

2003-10-15 21:32:36 +00:00
/***************************************************************************
element.cpp - description
-------------------
begin : Sat Sep 20 2003
copyright : (C) 2003 by Michael Margraf
email : margraf@mwt.ee.tu-berlin.de
***************************************************************************/
/***************************************************************************
* *
* 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 "element.h"
Element::Element()
{
2003-10-28 11:44:24 +00:00
Type = isDummy;
2003-10-15 21:32:36 +00:00
}
Element::~Element()
{
}
2003-10-28 11:44:24 +00:00
void Element::paintScheme(QPainter *)
{
}
void Element::setCenter(int, int, bool)
{
}