IBoolean.h
Go to the documentation of this file.
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 //-----------------------------------------------------------------------------
00031 #ifndef GENAPI_IBOOLEAN_H
00032 #define GENAPI_IBOOLEAN_H
00033 
00034 #include <GenApi/GenApiDll.h>
00035 #include <GenApi/Types.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     // IBoolean interface
00047     //*************************************************************
00048 
00053     interface GENAPI_DECL_ABSTRACT IBoolean   : virtual public IValue
00054     {
00055     public:
00057 
00061         virtual void SetValue(bool Value, bool Verify = true) = 0;
00062 
00064         virtual void operator=(bool Value){ SetValue( Value ); }
00065 
00067 
00072         virtual bool GetValue(bool Verify = false, bool IgnoreCache = false) const = 0;
00073 
00075         virtual bool operator()() const { return GetValue(); }
00076     };
00077 
00078 
00079     //*************************************************************
00080     // CBooleanRef class
00081     //*************************************************************
00082 
00083 #ifndef DOXYGEN_IGNORE
00084 
00089     template <class T>
00090     class CBooleanRefT : public CValueRefT<T>
00091     {
00092         typedef CValueRefT<T> ref;
00093 
00094     public:
00095         /*--------------------------------------------------------*/
00096         // IBoolean
00097         /*--------------------------------------------------------*/
00098 
00100         virtual void SetValue(bool Value, bool Verify = true)
00101         {
00102             if(ref::m_Ptr)
00103                 return ref::m_Ptr->SetValue(Value, Verify);
00104             else
00105                 throw ACCESS_EXCEPTION("Feature not present (reference not valid)");
00106 
00107             // unused param *JS* (removed warning)
00108             GC_UNUSED(Verify);
00109         }
00110 
00112         virtual void operator=(bool Value)
00113         {
00114             if(ref::m_Ptr)
00115                 return ref::m_Ptr->operator=(Value);
00116             else
00117                 throw ACCESS_EXCEPTION("Feature not present (reference not valid)");
00118         }
00119 
00121         virtual bool GetValue(bool Verify = false, bool IgnoreCache = false) const
00122         {
00123             if(ref::m_Ptr)
00124                 return ref::m_Ptr->GetValue(Verify, IgnoreCache);
00125             else
00126                 throw ACCESS_EXCEPTION("Feature not present (reference not valid)");
00127         }
00128 
00130         virtual bool operator()() const
00131         {
00132             if(ref::m_Ptr)
00133                 return ref::m_Ptr->operator()();
00134             else
00135                 throw ACCESS_EXCEPTION("Feature not present (reference not valid)");
00136         }
00137 
00138     };
00139 
00142     typedef CBooleanRefT<IBoolean> CBooleanRef;
00143 
00144 #endif
00145 
00146 
00147 
00148 }
00149 
00150 #ifdef _MSC_VER
00151 #   pragma warning ( pop )
00152 #endif
00153 
00154 #endif // ifndef GENAPI_IBOOLEAN_H


rc_genicam_api
Author(s): Heiko Hirschmueller
autogenerated on Thu Jun 6 2019 18:42:47