diff --git a/NvTriStrip/NvTriStrip.cpp b/NvTriStrip/NvTriStrip.cpp
index 5c5572dcda7705d9bd351107d76a8e3d6c60e182..9773154323a4f339baf000132f467c017245140c 100644
--- a/NvTriStrip/NvTriStrip.cpp
+++ b/NvTriStrip/NvTriStrip.cpp
@@ -2,6 +2,10 @@
 #include "NvTriStripObjects.h"
 #include "NvTriStrip.h"
 
+using namespace NvTriStrip;
+
+namespace NvTriStrip {
+
 ////////////////////////////////////////////////////////////////////////////////////////
 //private data
 static unsigned int cacheSize    = CACHESIZE_GEFORCE1_2;
@@ -496,3 +500,5 @@ void RemapIndices(const PrimitiveGroup* in_primGroups, const unsigned short numG
 
 	delete[] indexCache;
 }
+
+} //end namespace
diff --git a/NvTriStrip/NvTriStrip.h b/NvTriStrip/NvTriStrip.h
index 90736d0ec24eac109930a8a74db8dc8ec78d9703..1e136d280d94ef589d091ac1ed834228e1ecb720 100644
--- a/NvTriStrip/NvTriStrip.h
+++ b/NvTriStrip/NvTriStrip.h
@@ -5,6 +5,8 @@
 #define NULL 0
 #endif
 
+namespace NvTriStrip {
+
 ////////////////////////////////////////////////////////////////////////////////////////
 // Public interface for stripifier
 ////////////////////////////////////////////////////////////////////////////////////////
@@ -140,4 +142,6 @@ bool GenerateStrips(const unsigned short* in_indices, const unsigned int in_numI
 void RemapIndices(const PrimitiveGroup* in_primGroups, const unsigned short numGroups, 
 				  const unsigned short numVerts, PrimitiveGroup** remappedGroups);
 
-#endif
+} //End namespace
+
+#endif
\ No newline at end of file
diff --git a/NvTriStrip/NvTriStripObjects.cpp b/NvTriStrip/NvTriStripObjects.cpp
index 6428bf4f520478f9897b838fa017fa5353f96fb5..db7b22ab77ee2cbb53a3705d09f26d8d0ef70789 100644
--- a/NvTriStrip/NvTriStripObjects.cpp
+++ b/NvTriStrip/NvTriStripObjects.cpp
@@ -6,6 +6,8 @@
 #include "NvTriStripObjects.h"
 #include "VertexCache.h"
 
+using namespace NvTriStrip;
+
 #define CACHE_INEFFICIENCY 6
 
 NvStripifier::NvStripifier()
diff --git a/NvTriStrip/NvTriStripObjects.h b/NvTriStrip/NvTriStripObjects.h
index b4cc1e6a3e2ef860f33207c574eda0892651cedd..6c0b42e79d9499f0e38e55236cc58820399ec998 100644
--- a/NvTriStrip/NvTriStripObjects.h
+++ b/NvTriStrip/NvTriStripObjects.h
@@ -7,6 +7,9 @@
 #include <list>
 #include "VertexCache.h"
 
+//Wrap these types in a namespace
+namespace NvTriStrip {
+
 /////////////////////////////////////////////////////////////////////////////////
 //
 // Types defined for stripification
@@ -240,4 +243,6 @@ protected:
 	friend class NvStripInfo;
 };
 
-#endif
+} //End namespace
+
+#endif
\ No newline at end of file
diff --git a/NvTriStrip/VertexCache.cpp b/NvTriStrip/VertexCache.cpp
index 919e47c9b471a7da449680ef458d7a8270753d77..94f9f43966479546ef39bd30e55e3ad4b2254318 100644
--- a/NvTriStrip/VertexCache.cpp
+++ b/NvTriStrip/VertexCache.cpp
@@ -1,6 +1,7 @@
 
 
 #include "VertexCache.h"
+using namespace NvTriStrip;
 
 VertexCache::VertexCache()
 {
diff --git a/NvTriStrip/VertexCache.h b/NvTriStrip/VertexCache.h
index 5a1ea4caff3f39f152108b4e8e0f6aae75754226..05d90ea7bd4cacb4cf4cadf0ad425e1387adb57d 100644
--- a/NvTriStrip/VertexCache.h
+++ b/NvTriStrip/VertexCache.h
@@ -3,6 +3,8 @@
 
 #define VERTEX_CACHE_H
 
+namespace NvTriStrip {
+
 class VertexCache
 {
 	
@@ -24,4 +26,6 @@ private:
 
 };
 
+} //End namespace
+
 #endif
diff --git a/src/ComplexShape.cpp b/src/ComplexShape.cpp
index c7ae8f854817edb2381f45ef6d0ec4f411265f1d..dba9dcaf0ec096c5426ff20b356de8419604527f 100644
--- a/src/ComplexShape.cpp
+++ b/src/ComplexShape.cpp
@@ -18,6 +18,9 @@ All rights reserved.  Please see niflib.h for licence. */
 
 using namespace Niflib;
 
+//Wrape these in the Niflib namespace so they don't polute the Class View
+namespace Niflib {
+
 struct VertNorm {
 	Vector3 position;
 	Vector3 normal;
@@ -91,6 +94,15 @@ struct CompoundVertex {
 	}
 };
 
+struct MergeLookUp {
+	unsigned int vertIndex;
+	unsigned int normIndex;
+	unsigned int colorIndex;
+	map<unsigned int, unsigned int> uvIndices; //TexCoordSet Index, TexCoord Index
+};
+
+} //End namespace
+
 void ComplexShape::SetName( const string & n ) {
 	name = n;
 }
@@ -167,13 +179,6 @@ void ComplexShape::Clear() {
 	name.clear();
 }
 
-struct MergeLookUp {
-	unsigned int vertIndex;
-	unsigned int normIndex;
-	unsigned int colorIndex;
-	map<unsigned int, unsigned int> uvIndices; //TexCoordSet Index, TexCoord Index
-};
-
 void ComplexShape::Merge( NiAVObject * root ) {
 
 	if ( root == NULL ) {
diff --git a/src/obj/NiSkinPartition.cpp b/src/obj/NiSkinPartition.cpp
index 6f9291fed8107eec624523768a7687ceec03a400..4b72f85100a51a4e1d0c93907873238ca11e1136 100644
--- a/src/obj/NiSkinPartition.cpp
+++ b/src/obj/NiSkinPartition.cpp
@@ -12,6 +12,7 @@ All rights reserved.  Please see niflib.h for licence. */
 #include "../../NvTriStrip/NvTriStrip.h"
 #include <algorithm>
 using namespace Niflib;
+using namespace NvTriStrip;
 
 typedef vector<float> WeightList;
 typedef vector<unsigned short> BoneList;
diff --git a/src/obj/NiTriStripsData.cpp b/src/obj/NiTriStripsData.cpp
index 488ee3a26e5025dd580decb463b9a45648b164e2..cd5051e14243325828d3329b2022754971ab85a8 100644
--- a/src/obj/NiTriStripsData.cpp
+++ b/src/obj/NiTriStripsData.cpp
@@ -7,6 +7,7 @@ All rights reserved.  Please see niflib.h for licence. */
 
 using namespace Niflib;
 using namespace triangle_stripper;
+using namespace NvTriStrip;
 
 // Helper methods
 typedef vector<unsigned short> TriStrip;