]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/include/file-name.hh
Issue 4550 (2/2) Avoid "using namespace std;" in included files
[lilypond.git] / flower / include / file-name.hh
index e0fedd314bbaa7a1e32b0c1f6875bb399e2ffd11..6f05a036359c1ce22323b09d4369b2f9c619c6d7 100644 (file)
@@ -1,7 +1,7 @@
 /*
   This file is part of LilyPond, the GNU music typesetter.
 
-  Copyright (C) 1997--2014 Han-Wen Nienhuys <hanwen@xs4all.nl>
+  Copyright (C) 1997--2015 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
@@ -29,18 +29,18 @@ std::string get_working_directory ();
 class File_name
 {
 public:
-  string root_;
-  string dir_;
-  string base_;
-  string ext_;
+  std::string root_;
+  std::string dir_;
+  std::string base_;
+  std::string ext_;
 
-  File_name (string = "");
+  File_name (std::string = "");
 
   bool is_absolute () const;
-  string to_string () const;
+  std::string to_string () const;
   File_name canonicalized () const;
-  string dir_part () const;
-  string file_part () const;
+  std::string dir_part () const;
+  std::string file_part () const;
 };
 
 #endif /* FILE_NAME */