]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/scope.hh
799e480ac074a24313157de265af9f72fc1478a2
[lilypond.git] / lily / include / scope.hh
1 /*   
2   scope.hh -- declare Scope
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 1998 Han-Wen Nienhuys <hanwen@cs.ruu.nl>
7   
8  */
9
10 #ifndef SCOPE_HH
11 #define SCOPE_HH
12
13 #include "dictionary.hh"
14 #include "lily-proto.hh"
15
16 class Scope : public Dictionary<Identifier*> {
17 public:
18   void print () const;
19   Scope ();
20   Scope (Scope const &);
21   ~Scope ();
22 };
23
24 #endif /* SCOPE_HH */
25