blob: a0ef9138349d21abbab272ab7b006c634f7c648e (
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
26
27
28
29
30
31
32
33
34
35
|
#ifndef KJSEMBED_QFrame_H
#define KJSEMBED_QFrame_H
#include <kjs/interpreter.h>
#include <kjs/object.h>
/**
* Namespace containing the KJSEmbed library.
*/
namespace KJSEmbed {
/**
* Wrapper class for TQFrame enums.
*
* @author Ian Reinhart Geiser, geiseri@kde.org
*/
class TQFrameImp
{
public:
static void addBindings( KJS::ExecState *exec, KJS::Object &object );
};
} // namespace KJSEmbed
#endif // KJSEMBED_QFrame_H
// Local Variables:
// c-basic-offset: 4
// End:
|