Fixed Spice netlist exporter
This commit is contained in:
parent
68e3daec6e
commit
5795a2dbf3
2
TODO
2
TODO
|
@ -1,4 +1,4 @@
|
|||
fix spice netlist exporter
|
||||
TEST: fix spice netlist exporter
|
||||
view controls (zoom, pan, fit to screen)
|
||||
simulation settings
|
||||
plot settings - axis range, colors
|
||||
|
|
|
@ -41,7 +41,13 @@
|
|||
|
||||
bool NETLIST_EXPORTER_PSPICE::WriteNetlist( const wxString& aOutFileName, unsigned aNetlistOptions )
|
||||
{
|
||||
return false;
|
||||
/// @todo take options into account
|
||||
//bool aUsePrefix = aNetlistOptions & NET_USE_X_PREFIX;
|
||||
//bool aUseNetcodeAsNetName = aNetlistOptions & NET_USE_NETCODES_AS_NETNAMES;
|
||||
|
||||
FILE_OUTPUTFORMATTER outputFile( aOutFileName, wxT( "wt" ), '\'' );
|
||||
|
||||
return Format( &outputFile, aNetlistOptions );
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue