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.
31 lines
451 B
31 lines
451 B
|
|
#ifndef __kdevdriver_h
|
|
#define __kdevdriver_h
|
|
|
|
#include "javasupportpart.h"
|
|
|
|
#include <kdevproject.h>
|
|
#include <kdeversion.h>
|
|
|
|
#include "driver.h"
|
|
|
|
#include <cstdlib>
|
|
#include <unistd.h>
|
|
|
|
class KDevDriver: public Driver
|
|
{
|
|
public:
|
|
KDevDriver( JavaSupportPart* javaSupport );
|
|
JavaSupportPart* javaSupport();
|
|
void setupProject();
|
|
|
|
protected:
|
|
void setupLexer( JavaLexer* lexer );
|
|
|
|
private:
|
|
JavaSupportPart* m_javaSupport;
|
|
};
|
|
|
|
#endif
|
|
|