codedocumentlist.h
00001 /*************************************************************************** 00002 * * 00003 * This program is free software; you can redistribute it and/or modify * 00004 * it under the terms of the GNU General Public License as published by * 00005 * the Free Software Foundation; either version 2 of the License, or * 00006 * (at your option) any later version. * 00007 * * 00008 ***************************************************************************/ 00009 00010 #ifndef _CODEDOCUMENTLIST_H 00011 #define _CODEDOCUMENTLIST_H 00012 00013 #include <qptrlist.h> 00014 00015 // forward declarations 00016 class CodeDocument; 00017 00018 typedef QPtrList<CodeDocument> CodeDocumentList; 00019 typedef QPtrListIterator<CodeDocument> CodeDocumentListIt; 00020 00021 #endif
