LibMusicXML 3.22
browser.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 __browser__
14#define __browser__
15
16#include "ctree.h"
17
18namespace MusicXML2
19{
20
21//______________________________________________________________________________
22template <typename T> class browser {
23 public:
24 virtual ~browser() {}
25 virtual void browse (T& t) = 0;
26};
27
28}
29
30#endif
Definition browser.h:22