~ubuntu-branches/debian/sid/kdevelop/sid

« back to all changes in this revision

Viewing changes to languages/java/KDevJavaSupportIface.h

  • Committer: Bazaar Package Importer
  • Author(s): Jeremy Lainé
  • Date: 2006-05-23 18:39:42 UTC
  • Revision ID: james.westby@ubuntu.com-20060523183942-hucifbvh68k2bwz7
Tags: upstream-3.3.2
Import upstream version 3.3.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
#ifndef KDEVJAVASUPPORTIFACE_H
 
3
#define KDEVJAVASUPPORTIFACE_H
 
4
 
 
5
#include <qobject.h>
 
6
#include <dcopobject.h>
 
7
 
 
8
class JavaSupportPart;
 
9
 
 
10
class KDevJavaSupportIface : public QObject, public DCOPObject
 
11
{
 
12
    Q_OBJECT
 
13
    K_DCOP
 
14
public:
 
15
    KDevJavaSupportIface( JavaSupportPart* javaSupport );
 
16
    ~KDevJavaSupportIface();
 
17
    
 
18
k_dcop:
 
19
    void addClass();
 
20
    void parseProject();
 
21
    
 
22
private:
 
23
    JavaSupportPart* m_javaSupport;
 
24
};
 
25
 
 
26
#endif