LibMusicXML  3.18
versions.h
1 /*
2  MusicXML Library
3  Copyright (C) Grame 2006-2013
4 
5  This Source Code Form is subject to the terms of the Mozilla Public
6  License, v. 2.0. If a copy of the MPL was not distributed with this
7  file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 
9  Grame Research Laboratory, 11, cours de Verdun Gensoul 69002 Lyon - France
10  research@grame.fr
11 */
12 
13 #ifndef __versions__
14 #define __versions__
15 
16 #include "exports.h"
17 
18 namespace MusicXML2
19 {
20 
30 //______________________________________________________________________________
31 class EXP versions {
32  public:
33  static float libVersion();
34  static const char* libVersionStr();
35 
36  static float xml2guidoVersion();
37  static const char* xml2guidoVersionStr();
38 
39  static float xml2lilypondVersion();
40  static const char* xml2lilypondVersionStr();
41 
42  static float xml2brailleVersion();
43  static const char* xml2brailleVersionStr();
44 
45 // static float xml2antescofoVersion();
46 // static const char* xml2antescofoVersionStr();
47 };
48 
49 }
50 
51 #endif
MusicXML2::versions
Library and components version information.
Definition: versions.h:31