blob: 6c34e2ad05db57f029b4e83dbd4cb06a2a7b77ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#ifndef __kdevdriver_h
#define __kdevdriver_h
#include "javasupportpart.h"
#include <kdevproject.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
|