blob: 714b098499bd2fc8ab8401e581b71720d47b1ba9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef __xtdeparts_partmanager_h__
#define __xtdeparts_partmanager_h__
#include <dcopobject.h>
#include <tqglobal.h>
class XKPartManager : public DCOPObject
{
K_DCOP
k_dcop:
/** Query a XPart able to handle a given mimetype */
virtual DCOPRef createPart( TQString servicetype ) = 0;
/** Delete a previously created XPart */
virtual void deletePart( DCOPRef ref ) = 0;
};
#endif
|