summaryrefslogtreecommitdiff
path: root/src/lib/config.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-10-24 22:13:53 +0100
committerCarl Hetherington <cth@carlh.net>2012-10-24 22:13:53 +0100
commit63ea6b6c5ee64f8ee067c2b488d004b6dfe363e0 (patch)
treed248762556466fd076cfd20f2e6aa1d5d9544184 /src/lib/config.cc
parent977b36672892b14de4ecb68e98415c64946e8a93 (diff)
Use boost::signals2; fix bugs with x-thread signalling.
Diffstat (limited to 'src/lib/config.cc')
-rw-r--r--src/lib/config.cc9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/lib/config.cc b/src/lib/config.cc
index 44d110689..711963a26 100644
--- a/src/lib/config.cc
+++ b/src/lib/config.cc
@@ -29,8 +29,11 @@
#include "filter.h"
#include "sound_processor.h"
-using namespace std;
-using namespace boost;
+using std::vector;
+using std::ifstream;
+using std::string;
+using std::ofstream;
+using boost::shared_ptr;
Config* Config::_instance = 0;
@@ -99,7 +102,7 @@ Config::Config ()
string
Config::file () const
{
- filesystem::path p;
+ boost::filesystem::path p;
p /= g_get_user_config_dir ();
p /= ".dvdomatic";
return p.string ();