parent
35763db331
commit
a38bf5e90a
5 changed files with 64 additions and 17 deletions
@ -0,0 +1,22 @@ |
||||
#ifndef KONSOLEIFACE_H |
||||
#define KONSOLEIFACE_H |
||||
|
||||
#include <dcopobject.h> |
||||
|
||||
class KonsoleIface : virtual public DCOPObject |
||||
{ |
||||
K_DCOP |
||||
k_dcop: |
||||
|
||||
virtual int sessionCount() = 0; |
||||
|
||||
virtual int currentSession() = 0; |
||||
virtual void setCurrentSession( int ) = 0; |
||||
|
||||
virtual void nextSession() = 0; |
||||
virtual void prevSession() = 0; |
||||
|
||||
virtual void newSession() = 0; |
||||
}; |
||||
|
||||
#endif // KONSOLEIFACE_H
|
||||
Loading…
Reference in new issue