You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdesdk/umbrello/umbrello/codeimport/cppimport.h

60 lines
1.8 KiB

/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* copyright (C) 2005-2006 *
* Umbrello UML Modeller Authors <uml-devel@uml.sf.net> *
***************************************************************************/
#ifndef CPPIMPORT_H
#define CPPIMPORT_H
#include <tqstring.h>
#include "classimport.h"
class CppDriver;
/**
* C++ code import
* @author Oliver Kellogg
* Bugs and comments to uml-devel@lists.sf.net or http://bugs.trinitydesktop.org
*/
class CppImport : public ClassImport {
public:
CppImport();
virtual ~CppImport();
protected:
/**
* Implement abstract operation from ClassImport for C++.
*/
void initialize();
/**
* Import a single file.
*
* @param filename The file to import.
*/
void parseFile(const TQString& filename);
private:
/**
* Auxiliary method for recursively traversing the #include dependencies
* in order to feed innermost includes to the model before dependent
* includes. It is important that includefiles are fed to the model
* in proper order so that references between UML objects are created
* properly.
*/
void feedTheModel(const TQString& fileName);
static CppDriver * ms_driver;
static TQStringList ms_seenFiles; ///< auxiliary buffer for feedTheModel()
};
#endif