From: fred Date: Thu, 27 Mar 1997 11:55:08 +0000 (+0000) Subject: lilypond-0.0.46.jcn1 X-Git-Tag: release/1.5.59~6170 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=dd2e27ad9f5e87d23001ecaf3a4ae159ed9178cf;p=lilypond.git lilypond-0.0.46.jcn1 --- diff --git a/lib/include/input.hh b/lib/include/input.hh new file mode 100644 index 0000000000..80ab11a1bb --- /dev/null +++ b/lib/include/input.hh @@ -0,0 +1,25 @@ +/* + input.hh -- declare Input + + source file of the LilyPond music typesetter + + (c) 1997 Han-Wen Nienhuys +*/ + + +#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