~andrew-plumb/kicad/kicad

« back to all changes in this revision

Viewing changes to include/common.h

  • Committer: jean-pierre charras
  • Date: 2013-10-11 16:24:43 UTC
  • Revision ID: jp.charras@wanadoo.fr-20131011162443-1uqzbg1yogv1c4n0
Remove wxUSE_UNICODE definition from CMakeLists.txt, because this define comes from wxWidgets and should not be made inside kicad
Remove KICAD_GOST option because it is  now useless: the 2 GOST options are now selectable at run time and are:
* specific page layouts (now user definable, and the GOST page layouts are available in template folder)
* notation for multiple parts per package (made in eeschema, preference menu)

Show diffs side-by-side

added added

removed removed

Lines of Context:
169
169
inline int Mils2mm( double x ) { return KiROUND( x * 25.4 / 1000. ); }
170
170
 
171
171
 
172
 
/// Return whether GOST is in play
173
 
inline bool IsGOST()
174
 
{
175
 
#if defined(KICAD_GOST)
176
 
    return true;
177
 
#else
178
 
    return false;
179
 
#endif
180
 
}
181
 
 
182
 
 
183
172
enum EDA_UNITS_T {
184
173
    INCHES = 0,
185
174
    MILLIMETRES = 1,