languages/java/kdevdriver.h
Go to the documentation of this file.00001 00002 #ifndef __kdevdriver_h 00003 #define __kdevdriver_h 00004 00005 #include "javasupportpart.h" 00006 00007 #include <kdevproject.h> 00008 #include <kdeversion.h> 00009 00010 #include "driver.h" 00011 #include <qprocess.h> 00012 00013 #include <cstdlib> 00014 #include <unistd.h> 00015 00016 class KDevDriver: public Driver 00017 { 00018 public: 00019 KDevDriver( JavaSupportPart* javaSupport ); 00020 JavaSupportPart* javaSupport(); 00021 void setupProject(); 00022 00023 protected: 00024 void setupLexer( JavaLexer* lexer ); 00025 00026 private: 00027 JavaSupportPart* m_javaSupport; 00028 }; 00029 00030 #endif 00031