]> git.donarmstrong.com Git - lilypond.git/blob - flower/include/string.icc
release: 1.0.1
[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--1998 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 */