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.
tdevelop/languages/java/tdevdriver.h

31 lines
451 B

#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