]> git.donarmstrong.com Git - lilypond.git/blob - flower/include/string.icc
f53586f5b54a8f73db1e9406a62fbd4f4e2aa7b7
[lilypond.git] / flower / include / string.icc
1 /*   
2   string.icc -- implement String inlines
3   
4   source file of the Flower Library
5   
6   (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #ifndef STRING_ICC
11 #define STRING_ICC
12
13
14 INLINE 
15 char &
16 String::operator [] (int n)
17 {
18   return (char &) strh_[n]; 
19 }
20
21 INLINE 
22 char 
23 String::operator [] (int n) const
24 {
25   return strh_[n]; 
26 }
27
28 INLINE 
29 String::String () 
30 {
31 }
32
33
34
35 #endif /* STRING_ICC */