2003-11-27 13:34:25 +00:00
|
|
|
/***************************************************************************
|
2003-12-26 16:31:25 +00:00
|
|
|
attenuator.h - description
|
2003-11-27 13:34:25 +00:00
|
|
|
-------------------
|
2003-12-26 16:31:25 +00:00
|
|
|
begin : Sat Aug 23 2003
|
2003-11-27 13:34:25 +00:00
|
|
|
copyright : (C) 2003 by Michael Margraf
|
2004-06-16 17:41:33 +00:00
|
|
|
email : michael.margraf@alumni.tu-berlin.de
|
2003-11-27 13:34:25 +00:00
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
* *
|
|
|
|
* 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. *
|
|
|
|
* *
|
|
|
|
***************************************************************************/
|
|
|
|
|
2003-12-26 16:31:25 +00:00
|
|
|
#ifndef ATTENUATOR_H
|
|
|
|
#define ATTENUATOR_H
|
2003-11-27 13:34:25 +00:00
|
|
|
|
2003-12-26 16:31:25 +00:00
|
|
|
#include "component.h"
|
2003-11-27 13:34:25 +00:00
|
|
|
|
|
|
|
|
2003-12-26 16:31:25 +00:00
|
|
|
class Attenuator : public Component {
|
|
|
|
public:
|
2004-06-06 14:13:59 +00:00
|
|
|
Attenuator();
|
|
|
|
~Attenuator();
|
|
|
|
Component* newOne();
|
2005-06-23 06:06:40 +00:00
|
|
|
static Element* info(QString&, char* &, bool getNewOne=false);
|
2003-12-26 16:31:25 +00:00
|
|
|
};
|
2003-11-27 13:34:25 +00:00
|
|
|
|
2003-12-26 16:31:25 +00:00
|
|
|
#endif
|