summaryrefslogtreecommitdiff
path: root/lily/include/scope.hh
diff options
context:
space:
mode:
authorHan-Wen Nienhuys <hanwen@xs4all.nl>1998-05-12 11:19:50 +0200
committerHan-Wen Nienhuys <hanwen@xs4all.nl>1998-05-12 11:19:50 +0200
commitc844072722a39a5fcd20372b0497d9130bd41dd7 (patch)
tree86e0a83bc59d6014a7091b0dd696ac1c4c31b015 /lily/include/scope.hh
parent95de6911a5cd1f90dfcd72ec798f089f6522f50f (diff)
release: 0.1.63
Diffstat (limited to 'lily/include/scope.hh')
-rw-r--r--lily/include/scope.hh25
1 files changed, 25 insertions, 0 deletions
diff --git a/lily/include/scope.hh b/lily/include/scope.hh
new file mode 100644
index 0000000000..799e480ac0
--- /dev/null
+++ b/lily/include/scope.hh
@@ -0,0 +1,25 @@
+/*
+ scope.hh -- declare Scope
+
+ source file of the GNU LilyPond music typesetter
+
+ (c) 1998 Han-Wen Nienhuys <hanwen@cs.ruu.nl>
+
+ */
+
+#ifndef SCOPE_HH
+#define SCOPE_HH
+
+#include "dictionary.hh"
+#include "lily-proto.hh"
+
+class Scope : public Dictionary<Identifier*> {
+public:
+ void print () const;
+ Scope ();
+ Scope (Scope const &);
+ ~Scope ();
+};
+
+#endif /* SCOPE_HH */
+