SCIMBridge  0.4.x
scim-bridge-agent.h
Go to the documentation of this file.
1 /*
2  * SCIM Bridge
3  *
4  * Copyright (c) 2006 Ryo Dairiki <ryo-dairiki@users.sourceforge.net>
5  *
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation and
10  * appearing in the file LICENSE.LGPL included in the package of this file.
11  * You can also redistribute it and/or modify it under the terms of
12  * the GNU General Public License as published by the Free Software Foundation and
13  * appearing in the file LICENSE.GPL included in the package of this file.
14  *
15  * This library is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18  */
19 
37 #ifndef SCIMBRIDGEAGENT_H_
38 #define SCIMBRIDGEAGENT_H_
39 
40 #include "scim-bridge.h"
41 
46 {
47 
48  public:
49 
55  static ScimBridgeAgent *alloc ();
56 
60  virtual ~ScimBridgeAgent () {}
61 
67  virtual void set_noexit_enabled (bool enabled) = 0;
68 
74  virtual void set_standalone_enabled (bool enabled) = 0;
75 
80  virtual retval_t launch () = 0;
81 
82  protected:
83 
88 
89 };
90 #endif /*SCIMBRIDGEAGENT_H_*/
virtual retval_t launch()=0
virtual ~ScimBridgeAgent()
Definition: scim-bridge-agent.h:60
virtual void set_noexit_enabled(bool enabled)=0
int retval_t
Definition: scim-bridge.h:59
static ScimBridgeAgent * alloc()
Definition: scim-bridge-agent.cpp:183
This header describes about fundamental definitions of scim-bridge.
ScimBridgeAgent()
Definition: scim-bridge-agent.h:87
virtual void set_standalone_enabled(bool enabled)=0
Definition: scim-bridge-agent.h:45