summaryrefslogtreecommitdiffstats
path: root/kjsembed/doxygen_fakes.h
blob: 16c3c76b5b14ebaf3de433d263855f40540fc66c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

/** An object that supports signals and slots. */
class TTQObject {};
/** Base-class of all widgets. */
class TTQWidget : public TTQObject {};
/** A widget that has a frame. */
class TTQFrame : public TTQWidget {};

/** Namespace for the KParts framework. */
namespace KParts {
    /** A base-class for plugins that extend a KPart. */
    class Plugin : public TTQObject, public XMLGUIClient {};
    /** A base-class for KParts. */
    class Part : public TTQObject, public XMLGUIClient {};
    /** A base-class for KParts that provide a read-only view. */
    class ReadOnlyPart : public Part {};
};

/** Namespace for the KJS interpreter library. */
namespace KJS {
    /** Provides the implementation for a KJS object. */
    class ObjectImp {};
};