KDevelop API Documentation

phpparser.h

Go to the documentation of this file.
00001 /***************************************************************************
00002  *   Copyright (C) 2001 by Sandy Meier                                     *
00003  *   smeier@kdevelop.org                                                   *
00004  *                                                                         *
00005  *   This program is free software; you can redistribute it and/or modify  *
00006  *   it under the terms of the GNU General Public License as published by  *
00007  *   the Free Software Foundation; either version 2 of the License, or     *
00008  *   (at your option) any later version.                                   *
00009  *                                                                         *
00010  ***************************************************************************/
00011 
00012 #ifndef PHPPARSER_H
00013 #define PHPPARSER_H
00014 
00015 #include <codemodel.h>
00016 
00017 #include <qstring.h>
00018 #include <qstringlist.h>
00019 
00020 class KDevCore;
00021 
00026 class PHPParser {
00027 public:
00028     PHPParser(KDevCore* core,CodeModel* model);
00029     ~PHPParser();
00030     void parseFile(const QString& fileName);
00031     void parseLines(QStringList* lines,const QString& fileName);
00032 
00033  private:
00034   CodeModel* m_model;
00035   KDevCore* m_core;
00036   FileDom m_file;
00037 };
00038 
00039 #endif
KDE Logo
This file is part of the documentation for KDevelop Version 3.1.2.
Documentation copyright © 1996-2004 the KDE developers.
Generated on Tue Feb 22 09:22:33 2005 by doxygen 1.3.9.1 written by Dimitri van Heesch, © 1997-2003