no engine anymore
This commit is contained in:
@@ -1,13 +1,17 @@
|
||||
//================= Copyright kotofyt, All rights reserved ==================//
|
||||
// Purpose: Own implementation of vectors, it is better to use them in local
|
||||
// namespaces for own .
|
||||
//===========================================================================//
|
||||
|
||||
#ifndef TIER1_UTL_VECTOR_H
|
||||
#define TIER1_UTL_VECTOR_H
|
||||
|
||||
#include "tier1/utlbuffer.h"
|
||||
#include "tier0/lib.h"
|
||||
#include "tier1/utlbuffer.h"
|
||||
#include "tier1/utlinitlist.h"
|
||||
#include <initializer_list>
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Basic vector implementation. There isn't much in them.
|
||||
// Basic vector implementation. There isn't much in them but they work.
|
||||
//-----------------------------------------------------------------------------
|
||||
template<typename T>
|
||||
class CUtlVector
|
||||
@@ -43,6 +47,7 @@ public:
|
||||
CUtlVector<T> &operator=(const CUtlVector<T> &vec);
|
||||
|
||||
// Iterator stuff
|
||||
// Do we really need it?
|
||||
struct Iterator {
|
||||
T *m_pCurrent;
|
||||
Iterator( T *pCurrent ) : m_pCurrent(pCurrent) {}
|
||||
|
||||
Reference in New Issue
Block a user