00001 //----------------------------------------------------------------------------- 00002 // (c) 2006 by Basler Vision Technologies 00003 // Section: Vision Components 00004 // Project: GenApi 00005 // Author: Fritz Dierks 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 //----------------------------------------------------------------------------- 00032 #ifndef GENAPI_IBASE_H 00033 #define GENAPI_IBASE_H 00034 00035 #include <GenApi/GenApiDll.h> 00036 #include <GenApi/Types.h> 00037 #include <GenApi/Reference.h> 00038 00039 #pragma warning ( push ) 00040 #pragma warning ( disable : 4251 ) // XXX needs to have dll-interface to be used by clients of class YYY 00041 00042 namespace GENAPI_NAMESPACE 00043 { 00044 //************************************************************* 00045 // IBase interface 00046 //************************************************************* 00047 00052 interface GENAPI_DECL_ABSTRACT IBase 00053 { 00055 virtual EAccessMode GetAccessMode() const = 0; 00056 00058 virtual ~IBase() = 0; 00059 }; 00060 00061 // Implementation required for Windows only. 00062 // Note: the C++ standard >= 11 prohibit pure virtual destructors with a function body 00063 // in the declaration. Consequently gcc 4.0 and newer reject an inline implementation 00064 // in the class. 00065 inline IBase::~IBase() 00066 { 00067 // do nothing 00068 } 00069 00070 //************************************************************* 00071 // CBaseRef class 00072 //************************************************************* 00073 00074 #ifndef DOXYGEN_IGNORE 00075 00081 template <class T, class I=T> 00082 class CBaseRefT : public CReferenceT<T, I> 00083 { 00084 typedef CReferenceT<T, I> ref; 00085 00086 public: 00087 /*--------------------------------------------------------*/ 00088 // IBase 00089 /*--------------------------------------------------------*/ 00090 00092 virtual EAccessMode GetAccessMode() const 00093 { 00094 if(ref::m_Ptr) 00095 return ref::m_Ptr->GetAccessMode(); 00096 else 00097 return NI; 00098 } 00099 00100 }; 00101 00104 typedef CBaseRefT<IBase> CBaseRef; 00105 00106 #endif 00107 00108 } 00109 #pragma warning ( pop ) 00110 00111 #endif // ifndef GENAPI_IBASE_H