Public Member Functions | |
bool | load (MfcArchive &file) override |
Public Member Functions inherited from Common::Array< int32 > | |
Array (size_type count) | |
Array (size_type count, const int32 &value) | |
Array (const Array< int32 > &array) | |
Array (Array< int32 > &&old) | |
Array (std::initializer_list< int32 > list) | |
Array (const T2 *array, size_type n) | |
void | emplace (const_iterator pos, TArgs &&... args) |
void | emplace_back (TArgs &&...args) |
void | push_back (const int32 &element) |
void | push_back (int32 &&element) |
void | push_back (const Array< int32 > &array) |
void | pop_back () |
const int32 * | data () const |
int32 * | data () |
int32 & | front () |
const int32 & | front () const |
int32 & | back () |
const int32 & | back () const |
void | insert_at (size_type idx, const int32 &element) |
void | insert_at (size_type idx, const Array< int32 > &array) |
void | insert (iterator pos, const int32 &element) |
int32 | remove_at (size_type idx) |
int32 & | operator[] (size_type idx) |
const int32 & | operator[] (size_type idx) const |
Array< int32 > & | operator= (const Array< int32 > &array) |
Array & | operator= (Array< int32 > &&old) |
size_type | size () const |
void | clear () |
iterator | erase (iterator pos) |
iterator | erase (iterator first, iterator last) |
bool | empty () const |
bool | operator== (const Array< int32 > &other) const |
bool | operator!= (const Array< int32 > &other) const |
iterator | begin () |
const_iterator | begin () const |
iterator | end () |
const_iterator | end () const |
void | reserve (size_type newCapacity) |
void | resize (size_type newSize) |
void | resize (size_type newSize, const int32 value) |
void | assign (const_iterator first, const_iterator last) |
void | swap (Array &arr) |
Public Member Functions inherited from NGI::CObject | |
virtual void | save (MfcArchive &out) |
bool | loadFile (const Common::Path &fname) |
Additional Inherited Members | |
Public Types inherited from Common::Array< int32 > | |
typedef int32 * | iterator |
typedef const int32 * | const_iterator |
typedef int32 | value_type |
typedef uint | size_type |
Public Attributes inherited from NGI::CObject | |
ObjType | _objtype |
uint | _cnum |
Protected Member Functions inherited from Common::Array< int32 > | |
void | allocCapacity (size_type capacity) |
void | freeStorage (int32 *storage, const size_type elements) |
iterator | insert_aux (iterator pos, const_iterator first, const_iterator last) |
Static Protected Member Functions inherited from Common::Array< int32 > | |
static size_type | roundUpCapacity (size_type capacity) |
Protected Attributes inherited from Common::Array< int32 > | |
size_type | _capacity |
size_type | _size |
int32 * | _storage |