/* $Id: gramlistsimple.h 4025 2008-10-01 00:01:14Z abehm $ Copyright (C) 2007 by The Regents of the University of California Redistribution of this file is permitted under the terms of the BSD license Date: 09/17/2007 Author: Alexander Behm */ #ifndef _gramlistsimple_h_ #define _gramlistsimple_h_ #include "gramlist.h" template > class GramListSimple : public GramList { protected: InvList invertedList; public: GramListSimple() {}; InvList* getArray() { return &invertedList; } ~GramListSimple() {}; void free() { delete this; } }; #endif