PrcGnuCap.hpp
2.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
//**************************************************************************************************
// PrcGnuCap.hpp *
// --------------- *
// Description : This class provides the interface to the GNU-Cap electronic circuit simulator. *
// Started : 2003-09-01 *
// Last Update : 2016-07-23 *
// Copyright : (C) 2003-2016 MSWaters *
//**************************************************************************************************
//**************************************************************************************************
// *
// 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 3 of the License, or (at your option) any later version. *
// *
//**************************************************************************************************
#ifndef PRCGNUCAP_HPP
#define PRCGNUCAP_HPP
// Application Includes
#include "TypeDefs.hpp"
#include "base/PrcSimEngBase.hpp"
#include "netlist/SimnGnuCap.hpp"
#include "gnucap/commands/CmdGnuCapOP.hpp"
#include "gnucap/commands/CmdGnuCapDC.hpp"
#include "gnucap/commands/CmdGnuCapAC.hpp"
#include "gnucap/commands/CmdGnuCapTR.hpp"
#include "gnucap/commands/CmdGnuCapFO.hpp"
#include "gnucap/commands/CmdGnuCapPR.hpp"
#include "utility/CnvtType.hpp"
// wxWidgets Includes
#include <wx/config.h>
//**************************************************************************************************
class PrcGnuCap : public PrcSimEngBase
{
private:
// The label for the X axis variable (missing in GNU-Cap OP & DC analysis)
wxString m_osSwpSrcName;
// Functions to check / format the circuit description lines
// bool bFmtCpnts( ArrayComponent & roaCpnts ); ??? 17/08/2009
// Format the results file
bool bFmtGeneral ( void );
bool bFmtColLabels( void );
bool bFmtDataLines( void );
bool bFmtResultsFO( void );
public:
PrcGnuCap( void );
~PrcGnuCap( );
// Create the process argument list
virtual bool bMakeArgLst( SimnBase & roSimn );
// Format the results file
virtual bool bFmtResults( void );
};
//**************************************************************************************************
#endif // PRCGNUCAP_HPP