2015-07-19 16:58:40 +03:00
|
|
|
/*
|
|
|
|
* 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 <QtCore>
|
|
|
|
#include <schematic.h>
|
|
|
|
|
2015-08-01 11:00:30 +03:00
|
|
|
/*!
|
|
|
|
\file verilogawriter.h
|
|
|
|
\brief Declaration of the AbstractSpiceKernel class and vacompat namespace
|
|
|
|
*/
|
|
|
|
|
2015-07-19 16:58:40 +03:00
|
|
|
namespace vacompat {
|
|
|
|
QString normalize_value(QString Value);
|
|
|
|
void convert_functions(QStringList &tokens);
|
|
|
|
}
|
|
|
|
|
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
|