#include <cstddef>
Go to the source code of this file.
Data Structures | |
class | scoped_array< T > |
Functions | |
template<class T > | |
void | swap (scoped_array< T > &a, scoped_array< T > &b) |
void swap | ( | scoped_array< T > & | a, | |
scoped_array< T > & | b | |||
) | [inline] |
Definition at line 57 of file scoped_array.hpp.
00058 { 00059 a.swap(b); 00060 }