From c4315bdf3685beffe28a47a516e553a752578c22 Mon Sep 17 00:00:00 2001 From: fred Date: Sun, 11 Jan 1998 22:48:00 +0000 Subject: [PATCH] lilypond-0.1.41 --- flower/include/string.icc | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 flower/include/string.icc 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 */ -- 2.39.5