]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.1.41
authorfred <fred>
Sun, 11 Jan 1998 22:48:00 +0000 (22:48 +0000)
committerfred <fred>
Sun, 11 Jan 1998 22:48:00 +0000 (22:48 +0000)
flower/include/string.icc [new file with mode: 0644]

diff --git a/flower/include/string.icc b/flower/include/string.icc
new file mode 100644 (file)
index 0000000..8a03288
--- /dev/null
@@ -0,0 +1,35 @@
+/*   
+  string.icc -- implement String inlines
+  
+  source file of the Flower Library
+  
+  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
+  
+ */
+
+#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 */