]> git.lyx.org Git - lyx.git/blobdiff - src/support/path.C
get rid of MSVC warning (signed/unsigned comparison)
[lyx.git] / src / support / path.C
index b30bc244f3aa886602a65390b0767358b000ac6b..4989dd6a196f4f4edf95e180d3f259474239aa51 100644 (file)
@@ -1,18 +1,49 @@
 /**
  * \file path.C
- * Copyright 1995-2002 the LyX Team
- * Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * \author unknown
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS.
  */
 
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
+// Needed to prevent the definition of the unnamed_Path macro in the header file.
+#define PATH_C
+
+#include "support/path.h"
+#include "support/filename.h"
+#include "support/lyxlib.h"
+
+
+using std::string;
+
+
+namespace lyx {
+namespace support {
+
+Path::Path(string const & path)
+       : popped_(false)
+{
+       if (!path.empty()) {
+               pushedDir_ = getcwd();
+
+               if (pushedDir_.empty() || chdir(FileName(path))) {
+                       /* FIXME: throw */
+               }
+       } else {
+               popped_ = true;
+       }
+}
+
+
+Path::~Path()
+{
+       if (!popped_) pop();
+}
 
-#include "path.h"
 
 int Path::pop()
 {
@@ -21,12 +52,15 @@ int Path::pop()
                // throw logical_error();
                return 0;
        }
-       if (lyx::chdir(pushedDir_)) {
+
+       if (chdir(pushedDir_)) {
                // should throw an exception
                // throw DirChangeError();
        }
        popped_ = true;
+
        return 0;
 }
+
+} // namespace support
+} // namespace lyx