IPort.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_IPORT_H
00032 #define GENAPI_IPORT_H
00033 
00034 #include <Base/GCException.h>
00035 #include <GenApi/GenApiDll.h>
00036 #include <GenApi/Types.h>
00037 #include <GenApi/IBase.h>
00038 
00039 #ifdef _MSC_VER
00040 #   pragma warning ( push )
00041 #   pragma warning ( disable : 4251 ) // XXX needs to have dll-interface to be used by clients of class YYY
00042 #endif
00043 
00044 namespace GENAPI_NAMESPACE
00045 {
00046     //*************************************************************
00047     // IPort interface
00048     //*************************************************************
00049 
00054     interface GENAPI_DECL_ABSTRACT IPort  : virtual public IBase
00055     {
00057         virtual void Read(void *pBuffer, int64_t Address, int64_t Length) = 0;
00058 
00060         virtual void Write(const void *pBuffer, int64_t Address, int64_t Length) = 0;
00061     };
00062 
00063     //*************************************************************
00064     // CPortRef class
00065     //*************************************************************
00066 
00067 #ifndef DOXYGEN_IGNORE
00068 
00074     template <class T>
00075     class CPortRefT : public CBaseRefT<T>
00076     {
00077         typedef CBaseRefT<T> ref;
00078 
00079     public:
00080         /*--------------------------------------------------------*/
00081         // IPort
00082         /*--------------------------------------------------------*/
00083 
00085         virtual void Read(void *pBuffer, int64_t Address, int64_t Length)
00086         {
00087             if(ref::m_Ptr)
00088                 return ref::m_Ptr->Read(pBuffer, Address, Length);
00089             else
00090                 throw ACCESS_EXCEPTION("Feature not present (reference not valid)");
00091         }
00092 
00094         virtual void Write(const void *pBuffer, int64_t Address, int64_t Length)
00095         {
00096             if(ref::m_Ptr)
00097                 return ref::m_Ptr->Write(pBuffer, Address, Length);
00098             else
00099                 throw ACCESS_EXCEPTION("Feature not present (reference not valid)");
00100         }
00101 
00102     };
00103 
00106     typedef CPortRefT<IPort> CPortRef;
00107 
00108 #endif
00109 
00110 }
00111 
00112 #ifdef _MSC_VER
00113 #   pragma warning ( pop )
00114 #endif
00115 
00116 #endif // ifndef GENAPI_IPORT_H


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