Index: trunk/ab5.0/jenga/src/common/Directory.cpp
===================================================================
--- trunk/ab5.0/jenga/src/common/Directory.cpp	(revision 518)
+++ trunk/ab5.0/jenga/src/common/Directory.cpp	(revision 523)
@@ -1,8 +1,7 @@
 #include "stdafx.h"
 
-using namespace std;
 using namespace Jenga::Common;
 
-Directory::Directory( const string &path, bool isMake )
+Directory::Directory( const std::string &path, bool isMake )
 	: path( path )
 {
@@ -16,7 +15,7 @@
 }
 
-string Directory::GetFullPath( const string &relationPath )
+std::string Directory::GetFullPath( const std::string &relationPath )
 {
-	string resultPath = relationPath;
+	std::string resultPath = relationPath;
 
 	// '/'→'\'
@@ -29,5 +28,5 @@
 	}
 
-	if( resultPath.find( ":" ) != string::npos || resultPath.find( "\\\\" ) != string::npos )
+	if( resultPath.find( ":" ) != std::string::npos || resultPath.find( "\\\\" ) != std::string::npos )
 	{
 		// フルパスが引き渡されていたとき
