.. index:: pair: struct; P1::CameraSdkC::Vector .. _doxid-struct_p1_1_1_camera_sdk_c_1_1_vector: template struct P1::CameraSdkC::Vector ====================================== .. toctree:: :hidden: Specialization of :ref:`VectorSimple ` that takes a type having a :ref:`Delete() ` function. When the :ref:`Vector ` is :ref:`Clear() ` 'ed or :ref:`Delete() ` 'd, each element in the vector gets its :ref:`Delete() ` called, as well. This can be used in conjunction with a :ref:`ScopedCleanupRef ` to remember to clean-up elements losing ownership when going out of scope. .. ref-code-block:: cpp :class: doxyrest-overview-code-block #include template struct Vector: public :ref:`P1::CameraSdkC::VectorSimple` { // methods virtual void :target:`Clear`(); virtual void :target:`Delete`(); }; Inherited Members ----------------- .. ref-code-block:: cpp :class: doxyrest-overview-inherited-code-block public: // fields static uint32_t :ref:`mCreationCount` = 0; std::vector :ref:`v`; // methods virtual void :ref:`Clear`() = 0; virtual bool :ref:`Reserve`(uint32_t size) = 0; virtual bool :ref:`Add`(T& element) = 0; virtual uint32_t :ref:`Size`() const = 0; virtual T* :ref:`Get`(int idx) = 0; virtual bool :ref:`GetRef`(int idx, T& element) = 0; virtual void :ref:`Delete`() = 0; virtual void :ref:`Clear`(); virtual bool :ref:`Reserve`(uint32_t size); virtual bool :ref:`Add`(T& element); virtual uint32_t :ref:`Size`() const; virtual T* :ref:`Get`(int idx); virtual bool :ref:`GetRef`(int idx, T& element); virtual void :ref:`Delete`();