]> git.donarmstrong.com Git - lilypond.git/blob - flower/include/parray.hh
820d9214b3e04e0e3af4546559446de16da89a22
[lilypond.git] / flower / include / parray.hh
1 /*
2   parray.hh -- declare Pointer_array
3
4   source file of the Flower Library
5
6   (c) 1997--2007 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #ifndef PARRAY_HH
10 #define PARRAY_HH
11
12 #include "std-vector.hh"
13
14 using namespace std;
15
16 template<class T>
17 class Link_array : public vector<T *>
18 {
19   
20 };
21
22 #endif // PARRAY_HH
23