2009-11-05 19:26:52 +00:00
|
|
|
/*********/
|
|
|
|
/* CVPCB */
|
|
|
|
/*********/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
#ifndef __CVPCB_H__
|
|
|
|
#define __CVPCB_H__
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <pcbcommon.h>
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2009-05-06 11:55:36 +00:00
|
|
|
#include <boost/ptr_container/ptr_vector.hpp>
|
|
|
|
#include <boost/foreach.hpp>
|
|
|
|
|
|
|
|
|
2009-11-05 19:26:52 +00:00
|
|
|
// config for footprints doc file access
|
2009-04-21 17:56:27 +00:00
|
|
|
#define DEFAULT_FOOTPRINTS_LIST_FILENAME wxT( "footprints_doc/footprints.pdf" )
|
|
|
|
|
2008-06-11 11:27:58 +00:00
|
|
|
// Define print format to display a schematic component line
|
2007-10-27 12:24:09 +00:00
|
|
|
#define CMP_FORMAT wxT( "%3d %8s - %16s : %-.32s" )
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
#define FILTERFOOTPRINTKEY "FilterFootprint"
|
|
|
|
|
2012-02-01 19:49:37 +00:00
|
|
|
#include <netlist_reader.h>
|
2009-04-23 15:02:18 +00:00
|
|
|
|
2012-02-01 19:49:37 +00:00
|
|
|
typedef boost::ptr_vector< COMPONENT_INFO > COMPONENT_LIST;
|
2009-04-23 15:02:18 +00:00
|
|
|
|
|
|
|
extern const wxString FootprintAliasFileExtension;
|
2009-04-05 20:49:15 +00:00
|
|
|
extern const wxString RetroFileExtension;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
extern const wxString RetroFileWildcard;
|
2009-04-23 15:02:18 +00:00
|
|
|
extern const wxString FootprintAliasFileWildcard;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
extern const wxString titleLibLoadError;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
#endif /* __CVPCB_H__ */
|