open_toontown_panda3d/dtool/src/dtoolbase/plist.h

51 lines
1.8 KiB
C++

// Filename: plist.h
// Created by: drose (05Jun01)
//
////////////////////////////////////////////////////////////////////
//
// PANDA 3D SOFTWARE
// Copyright (c) 2001, Disney Enterprises, Inc. All rights reserved
//
// All use of this software is subject to the terms of the Panda 3d
// Software license. You should have received a copy of this license
// along with this source code; you will also find a current copy of
// the license at http://www.panda3d.org/license.txt .
//
// To contact the maintainers of this program write to
// panda3d@yahoogroups.com .
//
////////////////////////////////////////////////////////////////////
#ifndef PLIST_H
#define PLIST_H
#include "dtoolbase.h"
#include "pallocator.h"
#include <list>
////////////////////////////////////////////////////////////////////
// Class : plist
// Description : This is our own Panda specialization on the default
// STL list. Its main purpose is to call the hooks
// for MemoryUsage to properly track STL-allocated
// memory.
////////////////////////////////////////////////////////////////////
template<class Type>
class plist : public list<Type, pallocator<Type> > {
public:
plist() : list<Type, pallocator<Type> >() { }
plist(const plist<Type> &copy) : list<Type, pallocator<Type> >(copy) { }
plist(size_type n) : list<Type, pallocator<Type> >(n) { }
plist(size_type n, const Type &value) : list<Type, pallocator<Type> >(n, value) { }
// VC++ doesn't seem to inherit these properly.
typedef list<Type, pallocator<Type> >::iterator iterator;
typedef list<Type, pallocator<Type> >::const_iterator const_iterator;
typedef list<Type, pallocator<Type> >::reverse_iterator reverse_iterator;
typedef list<Type, pallocator<Type> >::const_reverse_iterator const_reverse_iterator;
};
#endif