mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
42 lines
1.8 KiB
C
42 lines
1.8 KiB
C
![]() |
/***************************************************************************
|
||
|
misc.h
|
||
|
--------
|
||
|
begin : Wed Nov 12 2004
|
||
|
copyright : (C) 2014 by YodaLee
|
||
|
email : lc85301@gmail.com
|
||
|
***************************************************************************/
|
||
|
|
||
|
/***************************************************************************
|
||
|
* *
|
||
|
* 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. *
|
||
|
* *
|
||
|
***************************************************************************/
|
||
|
/*!
|
||
|
* \file misc.h
|
||
|
* \Declaration of some miscellaneous function
|
||
|
*/
|
||
|
|
||
|
class QString;
|
||
|
|
||
|
QString complexRect(double, double, int Precision=3);
|
||
|
QString complexDeg (double, double, int Precision=3);
|
||
|
QString complexRad (double, double, int Precision=3);
|
||
|
QString StringNum (double, char form='g', int Precision=3);
|
||
|
void str2num (const QString&, double&, QString&, double&);
|
||
|
QString num2str (double);
|
||
|
QString StringNiceNum(double);
|
||
|
void convert2Unicode(QString&);
|
||
|
void convert2ASCII(QString&);
|
||
|
QString properName(const QString&);
|
||
|
QString properAbsFileName(const QString&);
|
||
|
QString properFileName(const QString&);
|
||
|
bool VHDL_Time(QString&, const QString&);
|
||
|
bool VHDL_Delay(QString&, const QString&);
|
||
|
bool Verilog_Time(QString&, const QString&);
|
||
|
bool Verilog_Delay(QString&, const QString&);
|
||
|
QString Verilog_Param(const QString);
|
||
|
bool checkVersion(QString&);
|