qucs_s/qucs/components/hic2_full.h
Vadim Kuznetzov 3257882f1f Reverted GUI entries for non-GPL Qucsator components
It is done for backward compatibility with older Qucsator versions
(<=0.0.18). The following components are reverted:

1. BSIM v3 and v4
2. HICUM L0 and L2
3. HBT_X

Only Components symbols were backported, nut no non-GPL source code.
2016-12-02 11:12:43 +03:00

28 lines
611 B
C++

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