00001 //----------------------------------------------------------------------------- 00002 // (c) 2006 by Basler Vision Technologies 00003 // Section: Vision Components 00004 // Project: GenApi 00005 // Author: Margret Albrecht 00006 // $Header$ 00007 // 00008 // License: This file is published under the license of the EMVA GenICam Standard Group. 00009 // A text file describing the legal terms is included in your installation as 'GenICam_license.pdf'. 00010 // If for some reason you are missing this file please contact the EMVA or visit the website 00011 // (http://www.genicam.org) for a full copy. 00012 // 00013 // THIS SOFTWARE IS PROVIDED BY THE EMVA GENICAM STANDARD GROUP "AS IS" 00014 // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, 00015 // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 00016 // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE EMVA GENICAM STANDARD GROUP 00017 // OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 00018 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 00019 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; 00020 // OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 00021 // WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 00022 // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 00023 // POSSIBILITY OF SUCH DAMAGE. 00024 //----------------------------------------------------------------------------- 00030 #ifndef GENAPI_IENUMENTRY_H 00031 #define GENAPI_IENUMENTRY_H 00032 00033 00034 #include <Base/GCString.h> 00035 #include <GenApi/GenApiDll.h> 00036 #include <GenApi/IValue.h> 00037 00038 #ifdef _MSC_VER 00039 # pragma warning ( push ) 00040 # pragma warning ( disable : 4251 ) // XXX needs to have dll-interface to be used by clients of class YYY 00041 #endif 00042 00043 namespace GENAPI_NAMESPACE 00044 { 00045 00046 //************************************************************* 00047 // IEnumEntry interface 00048 //************************************************************* 00049 00055 interface GENAPI_DECL_ABSTRACT IEnumEntry : virtual public IValue 00056 { 00057 00058 public: 00060 virtual int64_t GetValue() = 0; 00061 00063 virtual GENICAM_NAMESPACE::gcstring GetSymbolic()const = 0; 00064 00066 virtual double GetNumericValue() = 0; 00067 00069 virtual bool IsSelfClearing() = 0; 00070 }; 00071 00072 //************************************************************* 00073 // CEnumEntryRef class 00074 //************************************************************* 00075 00076 #ifndef DOXYGEN_IGNORE 00077 00083 template <class T> 00084 class CEnumEntryRefT : public CValueRefT<T> 00085 { 00086 typedef CValueRefT<T> ref; 00087 00088 public: 00089 /*--------------------------------------------------------*/ 00090 // IEnumEntry 00091 /*--------------------------------------------------------*/ 00092 00094 virtual int64_t GetValue() 00095 { 00096 if(ref::m_Ptr) 00097 return ref::m_Ptr->GetValue(); 00098 else 00099 throw ACCESS_EXCEPTION("Feature not present (reference not valid)"); 00100 } 00101 00103 virtual GENICAM_NAMESPACE::gcstring GetSymbolic()const 00104 { 00105 if(ref::m_Ptr) 00106 return ref::m_Ptr->GetSymbolic(); 00107 else 00108 throw ACCESS_EXCEPTION("Feature not present (reference not valid)"); 00109 } 00110 00112 virtual double GetNumericValue() 00113 { 00114 if(ref::m_Ptr) 00115 return ref::m_Ptr->GetNumericValue(); 00116 else 00117 throw ACCESS_EXCEPTION("Feature not present (reference not valid)"); 00118 } 00119 00121 virtual bool IsSelfClearing() 00122 { 00123 if(ref::m_Ptr) 00124 return ref::m_Ptr->IsSelfClearing(); 00125 else 00126 throw ACCESS_EXCEPTION("Feature not present (reference not valid)"); 00127 } 00128 }; 00129 00132 typedef CEnumEntryRefT<IEnumEntry> CEnumEntryRef; 00133 00134 #endif 00135 00136 } 00137 00138 #ifdef _MSC_VER 00139 # pragma warning ( pop ) 00140 #endif 00141 00142 #endif // ifndef GENAPI_IENUMENTRY_H