]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/vector.h
support for iPhone callbacks
[wxWidgets.git] / interface / wx / vector.h
index de47ae03721b6227f6090d9c777b1fd85ab0f404..93af592cbe22a8446dbbaf20b95448c621877802 100644 (file)
@@ -51,6 +51,19 @@ public:
      */
     wxVector(size_type size, const value_type& value);
 
+    /**
+        Constructor initializing the vector with the elements in the given
+        range.
+
+        The @a InputIterator template parameter must be an input iterator type.
+        This constructor adds all elements from @a first until, not not
+        including, @a last to the vector.
+
+        @since 2.9.5
+     */
+    template <class InputIterator>
+    wxVector(InputIterator first, InputIterator last);
+
     /**
         Copy constructor.
     */
@@ -70,6 +83,18 @@ public:
      */
     void assign(size_type n, const value_type& v);
 
+    /**
+        Assigns the elements in the given range to the vector.
+
+        The @a InputIterator template parameter must be an input iterator type.
+        This method clears the vector and then adds all elements from @a first
+        until, not not including, @a last to it.
+
+        @since 2.9.5
+     */
+    template <class InputIterator>
+    void assign(InputIterator first, InputIterator last);
+
     /**
         Returns item at position @a idx.
     */
@@ -112,7 +137,7 @@ public:
 
 
     /**
-        Returns vector's current capacity, i.e. how much memory is allocated.
+        Returns vector's current capacity, i.e.\ how much memory is allocated.
 
         @see reserve()
     */