blob: 139ce651df392a2ca98d8863ddc20528493831ac (
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
|