qucs_s/qucs/extsimkernels/verilogawriter.h

57 lines
1.6 KiB
C
Raw Normal View History

/*
* verilogawriter.h - Subcircuit to Verilog-A module converter declaration
*
* Copyright (C) 2015, Vadim Kuznetsov, ra3xdh@gmail.com
*
* This file is part of Qucs
*
* Qucs 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.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Qucs. If not, see <http://www.gnu.org/licenses/>.
*
*/
2015-07-19 14:33:42 +03:00
#ifndef VERILOGAWRITER_H
#define VERILOGAWRITER_H
#include <QString>
#include <QStringList>
#include <QTextStream>
2015-07-19 14:33:42 +03:00
#include <schematic.h>
/*!
\file verilogawriter.h
\brief Declaration of the AbstractSpiceKernel class and vacompat namespace
*/
namespace vacompat {
QString normalize_value(QString Value);
void convert_functions(QStringList &tokens);
QString normalize_voltage(QString &plus, QString &minus); // Exclude gnd nodes from
QString normalize_current(QString &plus, QString &minus, bool left_side = false); // currents and voltages
}
2015-07-19 14:33:42 +03:00
class VerilogAwriter
{
public:
VerilogAwriter();
~VerilogAwriter();
protected:
bool prepareToVerilogA(Schematic *sch);
public:
bool createVA_module(QTextStream &stream, Schematic *sch);
};
#endif // VERILOGAWRITER_H