lyx_mirror/src/support/Path.h
André Pönitz 8d06b3049b cosmetics
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21544 a592a061-630c-0410-9148-cb99ea01b6c8
2007-11-10 13:44:50 +00:00

70 lines
1.4 KiB
C++

// -*- C++ -*-
/**
* \file Path.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Lars Gullik Bjønnes
*
* Full author contact details are available in file CREDITS.
*/
#ifndef PATH_H
#define PATH_H
#include "support/FileName.h"
namespace lyx {
namespace support {
/**
* Path - utility closs for stackable working directories
*
* You can use a local variable of this type to temporarily
* change to a directory as the cwd, for example :
*
* if (blah) {
* Path p("/tmp/blah");
* ...
* }
*
* At the end of p's scope the cwd is reset to its previous value.
*/
class PathChanger {
public:
/// change to the given directory
explicit PathChanger(FileName const & path);
/// set cwd to the previous value if needed
~PathChanger();
/// set cwd to the previous value if needed
int pop();
private:
/// noncopyable
PathChanger(PathChanger const &);
void operator=(PathChanger const &);
/// whether we are in the new cwd or not
bool popped_;
/// the previous cwd
FileName pushedDir_;
};
// To avoid the wrong usage:
// Path("/tmp"); // wrong
// Path p("/tmp"); // right
// we add this macro:
///
// With boost 1.34 this is not usable anymore
//#ifndef PATH_C
//#define Path(x) unnamed_Path;
//#endif
// Tip gotten from Bobby Schmidt's column in C/C++ Users Journal
} // namespace support
} // namespace lyx
#endif // PATH_H