This commit is contained in:
Daveo 2000-12-06 19:29:40 +00:00
parent 2ba61e595c
commit 73c60fbd11
23 changed files with 471 additions and 84 deletions

View file

@ -1,9 +1,11 @@
/**********************/
/*** Vtx List Class ***/
/**********************/
/******************/
/*** List Class ***/
/******************/
#if !defined __VTXLIST_CLASS_HEADER__
#define __VTXLIST_CLASS_HEADER__
#pragma warning( disable : 4786 )
#if !defined __LIST_CLASS_HEADER__
#define __LIST_CLASS_HEADER__
#include <Vector>
@ -41,10 +43,9 @@ public:
return(ListSize);
}
void clear()
{
List.clear();
}
void clear() {List.clear();}
void resize(int i) {List.resize(i);}
int size() {return(List.size());}