]> git.lyx.org Git - lyx.git/blobdiff - src/support/lyxlib.h
zlib stuff
[lyx.git] / src / support / lyxlib.h
index e1c76ed649cec8cc22946726efc9ea862bb60d66..ed702d357ba2ef97ebece9b24693ecd14f418413 100644 (file)
 #include "LString.h"
 
 namespace lyx {
+namespace support {
 
 /// get the current working directory
 string const getcwd();
 /// change to a directory, 0 is returned on success.
 int chdir(string const & name);
 /**
- * rename a file, returns false if it fails. 
+ * rename a file, returns false if it fails.
  * It can handle renames across partitions.
  */
 bool rename(string const & from, string const & to);
@@ -64,6 +65,7 @@ inline bool float_equal(float var, float number, float error)
        return (number - error <= var && var <= number + error);
 }
 
+} // namespace support
 } // namespace lyx
+
 #endif /* LYX_LIB_H */