Skip to content

Commit

Permalink
Update vrvdef.h
Browse files Browse the repository at this point in the history
  • Loading branch information
lpugin committed Sep 17, 2015
1 parent e24478d commit e4bb441
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions include/vrv/vrvdef.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,20 @@

namespace vrv {

//----------------------------------------------------------------------------
// Version
//----------------------------------------------------------------------------

#define VERSION_MAJOR 0
#define VERSION_MINOR 9
#define VERSION_REVISION 9
// Adds "-dev" in the version number - should be set to false for releases
#define VERSION_DEV false

//----------------------------------------------------------------------------
// Typedefs
//----------------------------------------------------------------------------

class AttComparison;
class BeamElementCoord;
class Note;
Expand Down Expand Up @@ -144,12 +158,6 @@ enum InterfaceId {
#define DEFINITON_FACTOR 10
#define PARAM_DENOMINATOR 10

#define VERSION_MAJOR 0
#define VERSION_MINOR 9
#define VERSION_REVISION 9
// Adds "-dev" in the version number - should be set to false for releases
#define VERSION_DEV true

#define is_in(x,a,b) (((x) >= std::min((a),(b))) && ((x) <= std::max((a),(b))))

/**
Expand Down Expand Up @@ -270,4 +278,4 @@ enum ClefId {

} // namespace vrv

#endif // __VRV_DEF_H__
#endif // __VRV_DEF_H__

0 comments on commit e4bb441

Please sign in to comment.