Index: trunk/jenga/src/common/index.cpp
===================================================================
--- trunk/jenga/src/common/index.cpp	(revision 211)
+++ trunk/jenga/src/common/index.cpp	(revision 216)
@@ -1,2 +1,1 @@
-#include <jenga/include/common/logger.h>
 #include <jenga/include/common/Environment.h>
Index: trunk/jenga/src/smoothie/Namespace.cpp
===================================================================
--- trunk/jenga/src/smoothie/Namespace.cpp	(revision 211)
+++ 	(revision )
@@ -1,55 +1,0 @@
-#include <jenga/include/smoothie/BasicFixed.h>
-#include <jenga/include/smoothie/Smoothie.h>
-#include <jenga/include/smoothie/Namespace.h>
-#include <jenga/include/smoothie/SmoothieException.h>
-
-
-NamespaceScopes::NamespaceScopes( const string &namespaceStr ){
-	if( namespaceStr.size() == 0 ){
-		return;
-	}
-
-	string::size_type i = 0;
-	while( true ){
-		string::size_type i2 = namespaceStr.find( '.', i );
-
-		string tempName = namespaceStr.substr( i, i2-i );
-
-		push_back( tempName );
-
-		if( i2 == string::npos ){
-			break;
-		}
-
-		i = i2 + 1;
-	}
-}
-
-void NamespaceScopesCollection::SplitNamespace( const char *fullName, char *namespaceStr, char *simpleName ) const
-{
-	NamespaceScopes namespaceScopes( fullName );
-	bool hasSimpleName = false;
-	while( namespaceScopes.size() > 0 ){
-		if( IsExist( namespaceScopes ) ){
-			break;
-		}
-		namespaceScopes.pop_back();
-
-		hasSimpleName = true;
-	}
-
-	lstrcpy( namespaceStr, namespaceScopes.ToString().c_str() );
-
-	bool hasNamespace = false;
-	if( namespaceStr[0] ){
-		hasNamespace = true;
-	}
-
-	int dotLength = 0;
-	if( hasSimpleName && hasNamespace ){
-		dotLength = 1;
-	}
-
-	lstrcpy( simpleName, fullName + lstrlen( namespaceStr ) + dotLength );
-}
-
