From: fred Date: Sun, 11 Jan 1998 22:48:00 +0000 (+0000) Subject: lilypond-0.1.41 X-Git-Tag: release/1.5.59~6018 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=c4315bdf3685beffe28a47a516e553a752578c22;p=lilypond.git lilypond-0.1.41 --- diff --git a/flower/include/string.icc b/flower/include/string.icc new file mode 100644 index 0000000000..8a03288c04 --- /dev/null +++ b/flower/include/string.icc @@ -0,0 +1,35 @@ +/* + string.icc -- implement String inlines + + source file of the Flower Library + + (c) 1997 Han-Wen Nienhuys + + */ + +#ifndef STRING_ICC +#define STRING_ICC + + +INLINE +char & +String::operator [](int n) +{ + return (char &) strh_[n]; +} + +INLINE +char +String::operator [](int n) const +{ + return strh_[n]; +} + +INLINE +String::String () +{ +} + + + +#endif /* STRING_ICC */