]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.46.jcn1
authorfred <fred>
Thu, 27 Mar 1997 11:55:08 +0000 (11:55 +0000)
committerfred <fred>
Thu, 27 Mar 1997 11:55:08 +0000 (11:55 +0000)
lib/include/input.hh [new file with mode: 0644]

diff --git a/lib/include/input.hh b/lib/include/input.hh
new file mode 100644 (file)
index 0000000..80ab11a
--- /dev/null
@@ -0,0 +1,25 @@
+/*
+  input.hh -- declare Input
+
+  source file of the LilyPond music typesetter
+
+  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
+*/
+
+
+#ifndef INPUT_HH
+#define INPUT_HH
+
+/**
+  Base class for anything that records its poisition in the parse file.
+ */
+class Input {
+    char const *defined_ch_C_ ;
+
+public:
+    set_spot(char const *);
+    Input(char const *);
+    Input(Input const &);
+};
+
+#endif // INPUT_HH