yapf/array.hpp
changeset 5081 fe3a6da19d9f
parent 4549 106ed18a7675
child 5082 d7719dfaa7e1
equal deleted inserted replaced
5080:2f268952e410 5081:fe3a6da19d9f
    16 
    16 
    17 protected:
    17 protected:
    18 	CSuperArray     m_a; ///< array of arrays of items
    18 	CSuperArray     m_a; ///< array of arrays of items
    19 
    19 
    20 public:
    20 public:
    21 	ST_CONST(int, Tblock_size = Tblock_size_); ///< block size is now visible from outside
    21 	ST_CONST(int, Tblock_size = Tblock_size_) ///< block size is now visible from outside
    22 	ST_CONST(int, Tnum_blocks = Tnum_blocks_); ///< number of blocks is now visible from outside
    22 	ST_CONST(int, Tnum_blocks = Tnum_blocks_) ///< number of blocks is now visible from outside
    23 	ST_CONST(int, Tcapacity = Tblock_size * Tnum_blocks); ///< total max number of items
    23 	ST_CONST(int, Tcapacity = Tblock_size * Tnum_blocks) ///< total max number of items
    24 
    24 
    25 	/** implicit constructor */
    25 	/** implicit constructor */
    26 	FORCEINLINE CArrayT() { }
    26 	FORCEINLINE CArrayT() { }
    27 	/** Return actual number of items */
    27 	/** Return actual number of items */
    28 	FORCEINLINE int Size() const
    28 	FORCEINLINE int Size() const