cmpi

cmpi/CmpiSelectExp.h

Go to the documentation of this file.
00001 /*
00002  *
00003  * $Id: CmpiSelectExp.h,v 1.3 2008/07/09 19:36:59 tyreld Exp $
00004  *
00005  * (C) Copyright IBM Corp. 2003, 2005, 2008
00006  *
00007  * THIS FILE IS PROVIDED UNDER THE TERMS OF THE ECLIPSE PUBLIC LICENSE
00008  * ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THIS FILE
00009  * CONSTITUTES RECIPIENTS ACCEPTANCE OF THE AGREEMENT.
00010  *
00011  * You can obtain a current copy of the Eclipse Public License from
00012  * http://www.opensource.org/licenses/eclipse-1.0.txt
00013  *
00014  * Author:        Adrian Schuur <schuur@de.ibm.com>
00015  * Contributors:  Heidi Neumann, heidineu@de.ibm.com
00016  *                Angel Nunez Mencias, anunez@de.ibm.com
00017  *                Viktor Mihajlovski, mihajlov@de.ibm.com
00018  *
00019  * Description: CMPI Select Expression Definitions
00020  *
00021  */
00022 
00023 #ifndef _CmpiSelectExp_h_
00024 #define _CmpiSelectExp_h_
00025 
00026 #include "cmpidt.h"
00027 #include "cmpift.h"
00028 
00029 #include "Linkage.h"
00030 
00031 #include "CmpiObject.h"
00032 #include "CmpiStatus.h"
00033 #include "CmpiObjectPath.h"
00034 #include "CmpiBroker.h"
00035 #include "CmpiData.h"
00036 
00037 class CmpiObjectPath;
00038 
00043 class CMPI_PROVIDER_LINKAGE CmpiSelectExp : public CmpiObject {
00044    friend class CmpiBroker;
00045    friend class CmpiResult;
00046    friend class CmpiIndicationMI;
00047 protected:
00048 
00051    CmpiSelectExp(const CMPISelectExp* enc);
00052 
00055    CMPISelectExp *getEnc() const;
00056 
00057 private:
00058 
00061    CmpiSelectExp();
00062 public:
00063 };
00064 
00065 #endif