diff options
Diffstat (limited to 'src/LashProxy.cpp')
-rw-r--r-- | src/LashProxy.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/LashProxy.cpp b/src/LashProxy.cpp index 833683c..992060a 100644 --- a/src/LashProxy.cpp +++ b/src/LashProxy.cpp @@ -17,6 +17,10 @@ */ #include <string.h> + +#include <string> +#include <list> + #include <boost/shared_ptr.hpp> #include <boost/format.hpp> @@ -30,8 +34,9 @@ #define LASH_OBJECT "/" #define LASH_IFACE_CONTROL "org.nongnu.LASH.Control" -using namespace std; using boost::shared_ptr; +using std::list; +using std::string; struct LashProxyImpl { void init(Patchage* app); @@ -55,7 +60,7 @@ struct LashProxyImpl { int in_type, ...); - shared_ptr<Project> on_project_added(const string& name); + shared_ptr<Project> on_project_added(const std::string& name); shared_ptr<Client> on_client_added( shared_ptr<Project> project, |