blob: 4308bb49b28fdf968d2c6e2095c987a79911a04c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
namespace std {
/*!
* \brief vector documentation stub
*
* \warning
* This isn't the real vector template. It's just enough to get doxygen
* to draw pretty collaboration diagrams.
*/
template <class T>
class vector
{
public:
T* p;
};
} // namespace std
|