stl.hh revision 72
16145Snate@binkert.org/*
26145Snate@binkert.org * Copyright (c) 2003 The Regents of The University of Michigan
36145Snate@binkert.org * All rights reserved.
46145Snate@binkert.org *
56145Snate@binkert.org * Redistribution and use in source and binary forms, with or without
66145Snate@binkert.org * modification, are permitted provided that the following conditions are
76145Snate@binkert.org * met: redistributions of source code must retain the above copyright
86145Snate@binkert.org * notice, this list of conditions and the following disclaimer;
96145Snate@binkert.org * redistributions in binary form must reproduce the above copyright
106145Snate@binkert.org * notice, this list of conditions and the following disclaimer in the
116145Snate@binkert.org * documentation and/or other materials provided with the distribution;
126145Snate@binkert.org * neither the name of the copyright holders nor the names of its
136145Snate@binkert.org * contributors may be used to endorse or promote products derived from
146145Snate@binkert.org * this software without specific prior written permission.
156145Snate@binkert.org *
166145Snate@binkert.org * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
176145Snate@binkert.org * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
186145Snate@binkert.org * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
196145Snate@binkert.org * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
206145Snate@binkert.org * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
216145Snate@binkert.org * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
226145Snate@binkert.org * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
236145Snate@binkert.org * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
246145Snate@binkert.org * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
256145Snate@binkert.org * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
266145Snate@binkert.org * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
276145Snate@binkert.org */
286145Snate@binkert.org
297454Snate@binkert.org/**
307454Snate@binkert.org * @file
318645Snilay@cs.wisc.edu * Dummy definitions of STL classes to pick up relationships in doxygen.
327454Snate@binkert.org */
337054Snate@binkert.org
347054Snate@binkert.orgnamespace std {
357054Snate@binkert.org
368259SBrad.Beckmann@amd.com/** STL vector class*/
376154Snate@binkert.orgtemplate <class T> class vector {
386154Snate@binkert.org  public:
396145Snate@binkert.org    /** Dummy Item */
407055Snate@binkert.org    T item;
417454Snate@binkert.org};
427454Snate@binkert.org
437055Snate@binkert.org/** STL deque class */
449274Snilay@cs.wisc.edutemplate <class T> class deque {
456145Snate@binkert.org  public:
469274Snilay@cs.wisc.edu    /** Dummy Item */
476145Snate@binkert.org    T item;
486145Snate@binkert.org};
496145Snate@binkert.org
506145Snate@binkert.org/** STL list class */
517054Snate@binkert.orgtemplate <class T> class list {
526145Snate@binkert.org  public:
537054Snate@binkert.org    /** Dummy Item */
547454Snate@binkert.org    T item;
556145Snate@binkert.org};
567054Snate@binkert.org
577454Snate@binkert.org/** STL pair class */
586145Snate@binkert.orgtemplate <class X, class Y> class pair {
596145Snate@binkert.org  public:
607054Snate@binkert.org    /** Dummy Item */
619274Snilay@cs.wisc.edu    X item1;
629274Snilay@cs.wisc.edu    /** Dummy Item */
639274Snilay@cs.wisc.edu    Y item2;
649274Snilay@cs.wisc.edu};
659274Snilay@cs.wisc.edu
669274Snilay@cs.wisc.edu}
679274Snilay@cs.wisc.edu