LibMusicXML  3.18
basevisitor.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 __basevisitor__
14 #define __basevisitor__
15 
16 
17 #ifdef WIN32
18 #pragma warning (disable : 4251 4275)
19 #endif
20 
21 namespace MusicXML2
22 {
23 
25 {
26  public:
27  virtual ~basevisitor() {}
28 };
29 
30 }
31 
32 
33 #endif
Definition: basevisitor.h:25