mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
80 lines
2.2 KiB
C
80 lines
2.2 KiB
C
/***************************************************************************
|
|
components.h - description
|
|
-------------------
|
|
begin : Sat Aug 23 2003
|
|
copyright : (C) 2003 by Michael Margraf
|
|
email : michael.margraf@alumni.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. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#ifndef COMPONENTS_H
|
|
#define COMPONENTS_H
|
|
|
|
// This header file includes the header files of all components.
|
|
|
|
#include "component.h"
|
|
|
|
#include "ground.h"
|
|
#include "resistor.h"
|
|
#include "capacitor.h"
|
|
#include "inductor.h"
|
|
#include "dcblock.h"
|
|
#include "dcfeed.h"
|
|
#include "biast.h"
|
|
#include "transformer.h"
|
|
#include "symtrafo.h"
|
|
#include "subcirport.h"
|
|
#include "subcircuit.h"
|
|
#include "sparamfile.h"
|
|
#include "equation.h"
|
|
#include "attenuator.h"
|
|
#include "isolator.h"
|
|
#include "circulator.h"
|
|
#include "gyrator.h"
|
|
#include "phaseshifter.h"
|
|
#include "volt_dc.h"
|
|
#include "ampere_dc.h"
|
|
#include "volt_ac.h"
|
|
#include "ampere_ac.h"
|
|
#include "source_ac.h"
|
|
#include "vccs.h"
|
|
#include "cccs.h"
|
|
#include "vcvs.h"
|
|
#include "ccvs.h"
|
|
#include "tline.h"
|
|
#include "substrate.h"
|
|
#include "msline.h"
|
|
#include "mscoupled.h"
|
|
#include "msstep.h"
|
|
#include "mscorner.h"
|
|
#include "mstee.h"
|
|
#include "mscross.h"
|
|
#include "msmbend.h"
|
|
#include "msopen.h"
|
|
#include "coplanar.h"
|
|
#include "diode.h"
|
|
#include "bjt.h"
|
|
#include "jfet.h"
|
|
#include "mosfet.h"
|
|
#include "mosfet_depl.h"
|
|
#include "dc_sim.h"
|
|
#include "ac_sim.h"
|
|
#include "tr_sim.h"
|
|
#include "sp_sim.h"
|
|
#include "hb_sim.h"
|
|
#include "param_sweep.h"
|
|
#include "iprobe.h"
|
|
#include "volt_noise.h"
|
|
#include "ampere_noise.h"
|
|
|
|
|
|
#endif
|