blob: cc0a13937c39a2c272144104a785e691679c6420 (
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
30
|
#ifndef __kdevdriver_h
#define __kdevdriver_h
#include "javasupportpart.h"
#include <kdevproject.h>
#include <tdeversion.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
|