blob: 27fd7854c8f5f07f4a33a0a77327b6e6fee451a0 (
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 __tdevdriver_h
#define __tdevdriver_h
#include "javasupportpart.h"
#include <tdevproject.h>
#include <tdeversion.h>
#include "driver.h"
#include <cstdlib>
#include <unistd.h>
class TDevDriver: public Driver
{
public:
TDevDriver( JavaSupportPart* javaSupport );
JavaSupportPart* javaSupport();
void setupProject();
protected:
void setupLexer( JavaLexer* lexer );
private:
JavaSupportPart* m_javaSupport;
};
#endif
|