PrcGSchem.hpp
2.55 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
//**************************************************************************************************
// PrcGSchem.hpp *
// --------------- *
// Description : Provides an interface to the application gschem which is a schematic editor. If *
// the currently loaded netlist file is derived from a gSchem schematic file the *
// user can envoke gschem and edit the schematic. *
// Started : 2008-02-18 *
// Last Update : 2016-03-25 *
// Copyright : (C) 2004-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 PRCGSCHEM_HPP
#define PRCGSCHEM_HPP
// Application Includes
#include "TypeDefs.hpp"
#include "base/PrcBase.hpp"
// wxWidgets Includes
#include <wx/tokenzr.h>
//**************************************************************************************************
class PrcGSchem : public PrcBase
{
private :
ArrayFileName m_oaNameSchems; // The full names of the schematic file/s
public :
PrcGSchem( void );
~PrcGSchem( );
bool bSetSchemFiles( const wxString & rosFileNames );
bool bSetSchemFiles( const wxArrayString & roasFileNames );
const wxString & rosGetSchemFiles( void );
const ArrayFileName & roaGetSchemFiles( void ) { return( m_oaNameSchems ); }
virtual bool bExec( void );
};
//**************************************************************************************************
#endif // PRCGSCHEM_HPP