lyx_mirror/src/support/path.h
Lars Gullik Bjønnes 76938908d7 use more explicit on constructors use the pimpl idom to reduce size with about 500k
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@641 a592a061-630c-0410-9148-cb99ea01b6c8
2000-04-08 17:02:02 +00:00

57 lines
947 B
C++

// -*- C++ -*-
#ifndef PATH_H
#define PATH_H
#include "LString.h"
#include "support/filetools.h"
#include "lyxlib.h"
#ifdef __GNUG__
#pragma interface
#endif
///
class Path {
public:
///
explicit
Path(string const & path)
: popped_(false)
{
if (!path.empty()) {
pushedDir_ = GetCWD();
if (pushedDir_.empty() || lyx::chdir(path.c_str())) {
// should throw an exception
// throw DirChangeError();
// The use of WriteFSAlert makes this
// impossible to inline.
//WriteFSAlert(_("Error: Could not change to directory: "),
// path);
}
} else {
popped_ = true;
}
}
///
~Path()
{
if (!popped_) pop();
}
///
int pop();
private:
///
bool popped_;
///
string pushedDir_;
};
// To avoid the wrong usage:
// Path("/tmp"); // wrong
// Path p("/tmp"); // right
// we add this macro:
#define Path(x) unnamed_Path;
// Tip gotten from Bobby Schmidt's column in C/C++ Users Journal
#endif