172SN/A/*
21762SN/A * Copyright (c) 2003-2005 The Regents of The University of Michigan
372SN/A * All rights reserved.
472SN/A *
572SN/A * Redistribution and use in source and binary forms, with or without
672SN/A * modification, are permitted provided that the following conditions are
772SN/A * met: redistributions of source code must retain the above copyright
872SN/A * notice, this list of conditions and the following disclaimer;
972SN/A * redistributions in binary form must reproduce the above copyright
1072SN/A * notice, this list of conditions and the following disclaimer in the
1172SN/A * documentation and/or other materials provided with the distribution;
1272SN/A * neither the name of the copyright holders nor the names of its
1372SN/A * contributors may be used to endorse or promote products derived from
1472SN/A * this software without specific prior written permission.
1572SN/A *
1672SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1772SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1872SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1972SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
2072SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
2172SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
2272SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2372SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2472SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2572SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2672SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
272665SN/A *
282665SN/A * Authors: Erik Hallnor
292665SN/A *          Nathan Binkert
3072SN/A */
3172SN/A
3213SN/A/**
3313SN/A * @file
3413SN/A * Dummy definitions of STL classes to pick up relationships in doxygen.
3513SN/A */
3613SN/A
3713SN/Anamespace std {
3813SN/A
3913SN/A/** STL vector class*/
4013SN/Atemplate <class T> class vector {
4113SN/A  public:
4213SN/A    /** Dummy Item */
4313SN/A    T item;
4413SN/A};
4513SN/A
4613SN/A/** STL deque class */
4713SN/Atemplate <class T> class deque {
4813SN/A  public:
4913SN/A    /** Dummy Item */
5013SN/A    T item;
5113SN/A};
5213SN/A
5313SN/A/** STL list class */
5413SN/Atemplate <class T> class list {
5513SN/A  public:
5613SN/A    /** Dummy Item */
5713SN/A    T item;
5813SN/A};
5913SN/A
6013SN/A/** STL pair class */
6113SN/Atemplate <class X, class Y> class pair {
6213SN/A  public:
6313SN/A    /** Dummy Item */
6413SN/A    X item1;
6513SN/A    /** Dummy Item */
6613SN/A    Y item2;
6713SN/A};
6813SN/A
6913SN/A}
70