qucs_s/qucs/components/log_amp.h
ela 66ec246738 2008-01-19 Stefan Jahn <stefan@lkcc.org>
* log_amp.cpp (log_amp): Added new Logarithmic Amplifier verilog
        device.  Thanks to Mike Brinson!


git-svn-id: https://qucs.svn.sourceforge.net/svnroot/qucs/trunk@1441 b5b04e8c-4942-46c9-ab4f-83783d557d1c
2008-01-19 13:12:17 +00:00

28 lines
595 B
C++

/*
* log_amp.h - device definitions for log_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 log_amp_H
#define log_amp_H
#include "component.h"
class log_amp : public Component
{
public:
log_amp();
~log_amp() { };
Component* newOne();
static Element* info(QString&, char* &, bool getNewOne=false);
protected:
void createSymbol();
};
#endif /* log_amp_H */