summaryrefslogtreecommitdiffstats
path: root/src/kvim_iface.h
blob: 1084bc25db9ce7c5687fb904d296ac2faa58587d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef KVIM_IFACE
#define KVIM_IFACE

#include <dcopobject.h>

class KVim : virtual public DCOPObject
{
	K_DCOP
public:

k_dcop:
	virtual void execInsert(QString command)=0;
	virtual void execNormal(QString command)=0;
	virtual void execRaw(QString command)=0;
	virtual void execCmd(QString command)=0;
	virtual QString eval(QString expr)=0;
};

#endif