From 6309afd6ac6799d3b98f997cde5458ae244c17f3 Mon Sep 17 00:00:00 2001 From: Amorilia <amorilia@users.sourceforge.net> Date: Sat, 21 Aug 2010 20:52:36 +0100 Subject: [PATCH] Simple implementation of internal type number. --- include/Type.h | 2 ++ src/Type.cpp | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/include/Type.h b/include/Type.h index 34c629bc..3eee7c07 100644 --- a/include/Type.h +++ b/include/Type.h @@ -24,8 +24,10 @@ public: NIFLIB_API bool IsDerivedType ( const Type & compare_to ) const; NIFLIB_API bool operator<( const Type & compare_to ) const; const Type * base_type; + const int internal_type_number; private: string name; + static int num_types; }; } diff --git a/src/Type.cpp b/src/Type.cpp index 89cc80c7..7dba8567 100644 --- a/src/Type.cpp +++ b/src/Type.cpp @@ -4,7 +4,9 @@ All rights reserved. Please see niflib.h for license. */ #include "../include/Type.h" using namespace Niflib; -Type::Type (const string & type_name, const Type * par_type ) : name(type_name), base_type(par_type) {} +int Type::num_types = 0; + +Type::Type (const string & type_name, const Type * par_type ) : name(type_name), base_type(par_type), internal_type_number(num_types++) {} Type::~Type() {} -- GitLab