summaryrefslogtreecommitdiffstats
path: root/xparts/src/interfaces/xpartmanager.h
blob: 25a341f89f0b34420fbe227304f00152aab21461 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef __xkparts_partmanager_h__
#define __xkparts_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