Added wxVector::swap().

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61415 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2009-07-12 17:00:29 +00:00
parent c602c59b6e
commit dbe0872fc8
3 changed files with 31 additions and 0 deletions

View File

@@ -357,6 +357,7 @@ All:
- Include port number in host header in wxHTTP (Marcin 'Malcom' Malich).
- Added wxTempFile::Flush().
- Added support for wxLongLong and wxULongLong in wxVariant.
- Added wxVector::swap().
All (GUI):

View File

@@ -195,6 +195,13 @@ public:
clear();
}
void swap(wxVector& v)
{
wxSwap(m_size, v.m_size);
wxSwap(m_capacity, v.m_capacity);
wxSwap(m_values, v.m_values);
}
void clear()
{
// call destructors of stored objects:

View File

@@ -83,6 +83,7 @@ private:
CPPUNIT_TEST( Objects );
CPPUNIT_TEST( NonPODs );
CPPUNIT_TEST( Resize );
CPPUNIT_TEST( Swap );
CPPUNIT_TEST_SUITE_END();
void PushPopTest();
@@ -92,6 +93,7 @@ private:
void Objects();
void NonPODs();
void Resize();
void Swap();
DECLARE_NO_COPY_CLASS(VectorsTestCase)
};
@@ -266,3 +268,24 @@ void VectorsTestCase::Resize()
CPPUNIT_ASSERT_EQUAL( 17, v[3].GetValue() );
}
void VectorsTestCase::Swap()
{
wxVector<int> v1, v2;
v1.push_back(17);
v1.swap(v2);
CPPUNIT_ASSERT( v1.empty() );
CPPUNIT_ASSERT_EQUAL( 1, v2.size() );
CPPUNIT_ASSERT_EQUAL( 17, v2[0] );
v1.push_back(9);
v2.swap(v1);
CPPUNIT_ASSERT_EQUAL( 1, v1.size() );
CPPUNIT_ASSERT_EQUAL( 17, v1[0] );
CPPUNIT_ASSERT_EQUAL( 1, v2.size() );
CPPUNIT_ASSERT_EQUAL( 9, v2[0] );
v2.clear();
v1.swap(v2);
CPPUNIT_ASSERT( v1.empty() );
}