| 1 | // |
|---|---|
| 2 | // Boost.Pointer Container |
| 3 | // |
| 4 | // Copyright Thorsten Ottosen 2003-2005. Use, modification and |
| 5 | // distribution is subject to the Boost Software License, Version |
| 6 | // 1.0. (See accompanying file LICENSE_1_0.txt or copy at |
| 7 | // http://www.boost.org/LICENSE_1_0.txt) |
| 8 | // |
| 9 | // For more information, see http://www.boost.org/libs/ptr_container/ |
| 10 | // |
| 11 | |
| 12 | #include <boost/ptr_container/ptr_vector.hpp> |
| 13 | |
| 14 | template class |
| 15 | boost::ptr_vector<int>; |
| 16 | |
| 17 | template class |
| 18 | boost::ptr_vector<short>; |
| 19 | |
| 20 | template class |
| 21 | boost::ptr_vector<char>; |
| 22 | |
| 23 | template class |
| 24 | boost::ptr_vector<char*>; |
| 25 | |
| 26 | |
| 27 |
