Fixed Spice netlist exporter

This commit is contained in:
Maciej Suminski 2016-08-11 14:41:20 +02:00
parent 68e3daec6e
commit 5795a2dbf3
2 changed files with 8 additions and 2 deletions

2
TODO
View File

@ -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

View File

@ -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 );
}