00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef _CmpiPropertyMI_h_
00024 #define _CmpiPropertyMI_h_
00025
00026 #include <iostream>
00027
00028 #include "cmpidt.h"
00029 #include "cmpift.h"
00030
00031 #include "Linkage.h"
00032 #include "CmpiBaseMI.h"
00033 #include "CmpiStatus.h"
00034 #include "CmpiObjectPath.h"
00035 #include "CmpiResult.h"
00036 #include "CmpiContext.h"
00037 #include "CmpiArgs.h"
00038
00039
00040 class CMPI_PROVIDER_LINKAGE CmpiPropertyMI : virtual public CmpiBaseMI {
00041 public:
00042 CmpiPropertyMI(const CmpiBroker &mbp, const CmpiContext& ctx);
00043
00044 static CMPIStatus driveSetProperty
00045 (CMPIPropertyMI* mi, const CMPIContext* eCtx, const CMPIResult* eRslt,
00046 const CMPIObjectPath* eOp, const char* name, CMPIData data);
00047 static CMPIStatus driveGetProperty
00048 (CMPIPropertyMI* mi, const CMPIContext* eCtx, const CMPIResult* eRslt,
00049 const CMPIObjectPath* eOp, const char* name);
00050
00051 virtual CmpiStatus setProperty
00052 (const CmpiContext& ctx, CmpiResult& rslt,
00053 const CmpiObjectPath& op, const char* name, const CmpiData& data);
00054 virtual CmpiStatus getProperty
00055 (const CmpiContext& ctx, CmpiResult& rslt,
00056 const CmpiObjectPath& op, const char* name);
00057 };
00058
00059 #endif
00060