kexiapppart.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef KROSS_KEXIAPP_KEXIAPPPART_H
00021 #define KROSS_KEXIAPP_KEXIAPPPART_H
00022
00023 #include <qstring.h>
00024 #include <qvariant.h>
00025
00026 #include <api/object.h>
00027 #include <api/variant.h>
00028 #include <api/class.h>
00029
00030
00031 namespace KexiPart {
00032 class Item;
00033 class Part;
00034 }
00035
00036 namespace Kross { namespace KexiApp {
00037
00041 class KexiAppPartItem : public Kross::Api::Class<KexiAppPartItem>
00042 {
00043 public:
00044 KexiAppPartItem(KexiPart::Item*);
00045 virtual ~KexiAppPartItem() {}
00046 virtual const QString getClassName() const { return "Kross::KexiApp::KexiAppPartItem"; }
00047
00048 KexiPart::Item* item() { return m_item; }
00049 private:
00050 KexiPart::Item* m_item;
00051 };
00052
00053 }}
00054
00055 #endif
00056
This file is part of the documentation for Kexi 2.0 alpha.