]> git.saurik.com Git - wxWidgets.git/commitdiff
add wxVector(size_t size[, const value_type& value]) ctors
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 29 Nov 2008 22:28:44 +0000 (22:28 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 29 Nov 2008 22:28:44 +0000 (22:28 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57031 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/vector.h
interface/wx/vector.h

index 64b37b9885c5e371a0665d9ff30a2e9a32fe7392..cf8e69c6e4e46c78dbd4114cfc62919f056acb92 100644 (file)
@@ -169,6 +169,22 @@ public:
 
     wxVector() : m_size(0), m_capacity(0), m_values(NULL) {}
 
+    wxVector(size_type size)
+        : m_size(0), m_capacity(0), m_values(NULL) 
+    {
+        reserve(size);
+        for ( size_t n = 0; n < size; n++ )
+            push_back(value_type());
+    }
+
+    wxVector(size_type size, const value_type& v)
+        : m_size(0), m_capacity(0), m_values(NULL) 
+    {
+        reserve(n);
+        for ( size_t n = 0; n < size; n++ )
+            push_back(v);
+    }
+
     wxVector(const wxVector& c) : m_size(0), m_capacity(0), m_values(NULL)
     {
         Copy(c);
index ddaff2edcaa985fb022a01e44ff5b136b0f0572d..a85825f25800d72d3d01b35e0dd12f95e3cc2493 100644 (file)
@@ -64,6 +64,18 @@ public:
     */
     wxVector();
 
+    /**
+        Constructor initializing the vector with the given number of
+        default-constructed objects.
+     */
+    wxVector(size_type size);
+
+    /**
+        Constructor initializing the vector with the given number of
+        copies of the given object.
+     */
+    wxVector(size_type size, const value_type& value);
+
     /**
         Copy onstructor.
     */