]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/include/parray.hh
Issue 4550 (2/2) Avoid "using namespace std;" in included files
[lilypond.git] / flower / include / parray.hh
index bef32612f007d2dcf5de344a11540cac20d4ed11..471b9f585896f08294527044ac33dfc3a1c7ddd9 100644 (file)
@@ -1,9 +1,20 @@
 /*
-  parray.hh -- declare Pointer_array
+  This file is part of LilyPond, the GNU music typesetter.
 
-  source file of the Flower Library
+  Copyright (C) 1997--2015 Han-Wen Nienhuys <hanwen@xs4all.nl>
 
-  (c) 1997--2009 Han-Wen Nienhuys <hanwen@xs4all.nl>
+  LilyPond is free software: you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation, either version 3 of the License, or
+  (at your option) any later version.
+
+  LilyPond is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+
+  You should have received a copy of the GNU General Public License
+  along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef PARRAY_HH
 
 #include "std-vector.hh"
 
-using namespace std;
 
 template<class T>
-class Link_array : public vector<T *>
+class Link_array : public std::vector<T *>
 {
-  
+
 };
 
 #endif // PARRAY_HH