diff --git a/niflib.vcproj b/niflib.vcproj index 0baf57e3e0ba1309ee400a1d0e2c967c85d21222..2cebf6641cb748e82c06f687514149c1445a439b 100644 --- a/niflib.vcproj +++ b/niflib.vcproj @@ -794,6 +794,9 @@ <File RelativePath=".\obj\TriBasedGeomData.cpp"> </File> + <File + RelativePath=".\obj\Type.cpp"> + </File> </Filter> </Filter> <Filter @@ -1457,6 +1460,9 @@ <File RelativePath=".\obj\TriBasedGeomData.h"> </File> + <File + RelativePath=".\obj\Type.h"> + </File> </Filter> </Filter> <Filter diff --git a/obj/NiObject.cpp b/obj/NiObject.cpp index be59a607441010169573d025ef07b5f44be446b7..60f2c8156e75be7fbec45592c63826e7d37be8c4 100644 --- a/obj/NiObject.cpp +++ b/obj/NiObject.cpp @@ -9,30 +9,6 @@ const Type NiObject::TYPE("NiObject", NULL ); //Static to track total number of objects in memory. Initialize to zero. unsigned int NiObject::objectsInMemory = 0; -/* - * Type Methods - */ - -bool Type::IsSameType( const Type & compare_to ) const { - return &compare_to == this; -} - -bool Type::IsDerivedType( const Type & compare_to ) const { - - const Type * search = this; - while ( search != NULL ) { - if ( search == &compare_to ) { - return true; - } - search = search->base_type; - } - return false; -} - -/* - * NiObject Methods - */ - bool NiObject::IsSameType( const Type & compare_to) const { return GetType().IsSameType( compare_to ); } diff --git a/obj/NiObject.h b/obj/NiObject.h index f46dd623bf39c5d013c0e0252860931e9ef08ff4..57c6719d0094212949624667cfe052bf5fba5224 100644 --- a/obj/NiObject.h +++ b/obj/NiObject.h @@ -14,27 +14,12 @@ All rights reserved. Please see niflib.h for licence. */ #include <vector> #include "NIF_IO.h" #include "Ref.h" +#include "Type.h" #include "xml_extract.h" using namespace std; -/** - * Run Time Type Inforamtion Class - */ -class Type { -public: - Type (const string & type_name, const Type * base_type ); - ~Type(); - string GetTypeName() const; - - bool IsSameType ( const Type & compare_to ) const; - bool IsDerivedType ( const Type & compare_to ) const; - bool operator<( const Type & compare_to ) const { return (this < &compare_to); } -private: - string name; - const Type * base_type; -}; /** * NiObject - Base Object class from which all other objects derive diff --git a/obj/Type.cpp b/obj/Type.cpp new file mode 100644 index 0000000000000000000000000000000000000000..c39e035866b1c10f544ae03d992a95539a55d5fe --- /dev/null +++ b/obj/Type.cpp @@ -0,0 +1,28 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#include "Type.h" + +Type::Type (const string & type_name, const Type * par_type ) : name(type_name), base_type(par_type) {} + +Type::~Type() {} + +bool Type::operator<( const Type & compare_to ) const { + return (this < &compare_to); +} + +bool Type::IsSameType( const Type & compare_to ) const { + return &compare_to == this; +} + +bool Type::IsDerivedType( const Type & compare_to ) const { + + const Type * search = this; + while ( search != NULL ) { + if ( search == &compare_to ) { + return true; + } + search = search->base_type; + } + return false; +} \ No newline at end of file diff --git a/obj/Type.h b/obj/Type.h new file mode 100644 index 0000000000000000000000000000000000000000..e87354a291524216220157863281e6c411ae7edb --- /dev/null +++ b/obj/Type.h @@ -0,0 +1,29 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#ifndef _TYPE_H_ +#define _TYPE_H_ + +#include <string> + +using namespace std; + +/** + * Run Time Type Inforamtion Class + */ +class Type { +public: + Type (const string & type_name, const Type * par_type ); + ~Type(); + + string GetTypeName() const; + + bool IsSameType ( const Type & compare_to ) const; + bool IsDerivedType ( const Type & compare_to ) const; + bool operator<( const Type & compare_to ) const; +private: + string name; + const Type * base_type; +}; + +#endif \ No newline at end of file