![]() |
KiCad PCB EDA Suite
|
A simple helper class to store environment variable values and the status of whether or not they were defined externally to the process created when any of the KiCad applications was launched. More...
#include <pgm_base.h>
Public Member Functions | |
ENV_VAR_ITEM (const wxString &aValue=wxEmptyString, bool aIsDefinedExternally=false) | |
~ENV_VAR_ITEM () throw () | |
bool | GetDefinedExternally () const |
void | SetDefinedExternally (bool aIsDefinedExternally) |
const wxString & | GetValue () const |
void | SetValue (const wxString &aValue) |
Private Attributes | |
wxString | m_value |
The environment variable string value. More... | |
bool | m_isDefinedExternally |
Flag to indicate if the environment variable was defined externally to the process. More... | |
A simple helper class to store environment variable values and the status of whether or not they were defined externally to the process created when any of the KiCad applications was launched.
Definition at line 84 of file pgm_base.h.
|
inline |
Definition at line 87 of file pgm_base.h.
|
inline |
Definition at line 93 of file pgm_base.h.
|
inline |
Definition at line 95 of file pgm_base.h.
References m_isDefinedExternally.
|
inline |
Definition at line 101 of file pgm_base.h.
References m_value.
Referenced by PGM_BASE::InitPgm().
|
inline |
Definition at line 96 of file pgm_base.h.
References m_isDefinedExternally.
Referenced by PGM_BASE::InitPgm(), and DIALOG_CONFIGURE_PATHS::TransferDataFromWindow().
|
inline |
Definition at line 102 of file pgm_base.h.
References m_value.
Referenced by PGM_BASE::InitPgm().
|
private |
Flag to indicate if the environment variable was defined externally to the process.
Definition at line 109 of file pgm_base.h.
Referenced by GetDefinedExternally(), and SetDefinedExternally().
|
private |
The environment variable string value.
Definition at line 106 of file pgm_base.h.
Referenced by GetValue(), and SetValue().