add forgotten file to bzr3107, add GOST to KICAD_BULD_VERSION if defined KICAD_GOST

This commit is contained in:
Andrey Fedorushkov 2011-09-07 14:38:11 +04:00
parent 9f98995a46
commit 0648addabf
2 changed files with 31 additions and 1 deletions

View File

@ -6,7 +6,11 @@
#endif
#ifndef KICAD_BUILD_VERSION
#define KICAD_BUILD_VERSION "(2011-aug-04)"
#if defined KICAD_GOST
# define KICAD_BUILD_VERSION "(2011-aug-04 GOST)"
#else
# define KICAD_BUILD_VERSION "(2011-aug-04)"
#endif
#endif

View File

@ -0,0 +1,26 @@
/****************************************/
/* Macros: used to record and play */
/* sequence hotkeys and their positions */
/****************************************/
#ifndef _CLASS_MACROS_RECORD_H
#define _CLASS_MACROS_RECORD_H
#include <list>
class MACROS_RECORD
{
public:
int m_HotkeyCode;
int m_Idcommand;
wxPoint m_Position;
};
class MACROS_RECORDED
{
public:
wxPoint m_StartPosition;
std::list<MACROS_RECORD> m_Record;
};
#endif // _CLASS_MACROS_RECORD_H