qucs_s/qucs/components/mod_amp.h
ela b00ddd8e64 2007-12-13 Stefan Jahn <stefan@lkcc.org>
* mod_amp.cpp (mod_amp): Added new Modular OpAmp verilog device.
        Thanks to Mike Brinson!


git-svn-id: https://qucs.svn.sourceforge.net/svnroot/qucs/trunk@1379 b5b04e8c-4942-46c9-ab4f-83783d557d1c
2007-12-13 18:13:53 +00:00

28 lines
595 B
C++

/*
* mod_amp.h - device definitions for mod_amp module
*
* This 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, or (at your option)
* any later version.
*
*/
#ifndef mod_amp_H
#define mod_amp_H
#include "component.h"
class mod_amp : public Component
{
public:
mod_amp();
~mod_amp() { };
Component* newOne();
static Element* info(QString&, char* &, bool getNewOne=false);
protected:
void createSymbol();
};
#endif /* mod_amp_H */