KiCad PCB EDA Suite
Toggle main menu visibility
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
Functions
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
Variables
a
c
d
e
f
g
h
i
k
l
m
o
p
r
s
t
u
v
Typedefs
a
c
e
f
i
k
l
m
n
o
p
s
v
w
Enumerations
c
d
f
g
l
m
n
o
p
q
r
s
t
v
Enumerator
a
b
c
d
e
g
h
i
l
m
n
o
p
r
s
t
u
v
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Related Functions
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
z
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Enumerations
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
y
z
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
KiCad Dev Docs
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
Concepts
Loading...
Searching...
No Matches
job_export_sch_netlist.h
Go to the documentation of this file.
1
/*
2
* This program source code file is part of KiCad, a free EDA CAD application.
3
*
4
* Copyright (C) 2022 Mark Roszko <mark.roszko@gmail.com>
5
* Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6
*
7
* This program is free software: you can redistribute it and/or modify it
8
* under the terms of the GNU General Public License as published by the
9
* Free Software Foundation, either version 3 of the License, or (at your
10
* option) any later version.
11
*
12
* This program is distributed in the hope that it will be useful, but
13
* WITHOUT ANY WARRANTY; without even the implied warranty of
14
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15
* General Public License for more details.
16
*
17
* You should have received a copy of the GNU General Public License along
18
* with this program. If not, see <http://www.gnu.org/licenses/>.
19
*/
20
21
#ifndef JOB_EXPORT_SCH_NETLIST_H
22
#define JOB_EXPORT_SCH_NETLIST_H
23
24
#include <
kicommon.h
>
25
#include <wx/string.h>
26
#include "
job.h
"
27
28
class
KICOMMON_API
JOB_EXPORT_SCH_NETLIST
:
public
JOB
29
{
30
public
:
31
enum class
FORMAT
32
{
33
KICADXML,
34
KICADSEXPR,
35
ORCADPCB2,
36
CADSTAR,
37
SPICE,
38
SPICEMODEL,
39
PADS
,
40
ALLEGRO
41
};
42
43
static
std::map<JOB_EXPORT_SCH_NETLIST::FORMAT, wxString>& GetFormatNameMap();
44
45
public
:
46
JOB_EXPORT_SCH_NETLIST
();
47
wxString
GetDefaultDescription
()
const override
;
48
wxString
GetSettingsDialogTitle
()
const override
;
49
50
wxString
m_filename
;
51
52
FORMAT
format
;
53
54
bool
m_spiceSaveAllVoltages
;
55
bool
m_spiceSaveAllCurrents
;
56
bool
m_spiceSaveAllDissipations
;
57
bool
m_spiceSaveAllEvents
;
58
};
59
60
#endif
JOB_EXPORT_SCH_NETLIST
Definition:
job_export_sch_netlist.h:29
JOB_EXPORT_SCH_NETLIST::format
FORMAT format
Definition:
job_export_sch_netlist.h:52
JOB_EXPORT_SCH_NETLIST::m_filename
wxString m_filename
Definition:
job_export_sch_netlist.h:50
JOB_EXPORT_SCH_NETLIST::JOB_EXPORT_SCH_NETLIST
JOB_EXPORT_SCH_NETLIST()
JOB_EXPORT_SCH_NETLIST::m_spiceSaveAllCurrents
bool m_spiceSaveAllCurrents
Definition:
job_export_sch_netlist.h:55
JOB_EXPORT_SCH_NETLIST::m_spiceSaveAllEvents
bool m_spiceSaveAllEvents
Definition:
job_export_sch_netlist.h:57
JOB_EXPORT_SCH_NETLIST::m_spiceSaveAllVoltages
bool m_spiceSaveAllVoltages
Definition:
job_export_sch_netlist.h:54
JOB_EXPORT_SCH_NETLIST::m_spiceSaveAllDissipations
bool m_spiceSaveAllDissipations
Definition:
job_export_sch_netlist.h:56
JOB
An simple container class that lets us dispatch output jobs to kifaces.
Definition:
job.h:182
JOB::GetDefaultDescription
virtual wxString GetDefaultDescription() const
Definition:
job.cpp:74
JOB::GetSettingsDialogTitle
virtual wxString GetSettingsDialogTitle() const
Definition:
job.cpp:80
job.h
kicommon.h
KICOMMON_API
#define KICOMMON_API
Definition:
kicommon.h:28
VISIBILITY_LAYER::PADS
@ PADS
FORMAT
Definition:
pegtl/main.cpp:62
src
common
jobs
job_export_sch_netlist.h
Generated on Fri Apr 4 2025 00:04:56 for KiCad PCB EDA Suite by
1.9.6