classimport.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #ifndef CLASSIMPORT_H
00013 #define CLASSIMPORT_H
00014
00015 #include <qstringlist.h>
00016
00025 class ClassImport {
00026 public:
00027 ClassImport() {}
00028 virtual ~ClassImport() {}
00029
00035 void importFiles(const QStringList &files);
00036
00040 static ClassImport *createImporterByFileExt(const QString &filename);
00041
00042 protected:
00049 virtual void initialize() = 0;
00050
00057 virtual void parseFile(const QString& filename) = 0;
00058
00059 };
00060
00061 #endif
This file is part of the documentation for umbrello Version 3.1.0.