Commit 0648adda authored by Andrey Fedorushkov's avatar Andrey Fedorushkov

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

parent 9f98995a
......@@ -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
......
/****************************************/
/* 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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment