IFrameObserver.h
Go to the documentation of this file.
00001 /*=============================================================================
00002   Copyright (C) 2012 Allied Vision Technologies.  All Rights Reserved.
00003 
00004   Redistribution of this file, in original or modified form, without
00005   prior written consent of Allied Vision Technologies is prohibited.
00006 
00007 -------------------------------------------------------------------------------
00008 
00009   File:        IFrameObserver.h
00010 
00011   Description: Definition of interface AVT::VmbAPI::IFrameObserver.
00012 
00013 -------------------------------------------------------------------------------
00014 
00015   THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED
00016   WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF TITLE,
00017   NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A PARTICULAR  PURPOSE ARE
00018   DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, 
00019   INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 
00020   (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
00021   LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED  
00022   AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR 
00023   TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
00024   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
00025 
00026 =============================================================================*/
00027 
00028 #ifndef AVT_VMBAPI_IFRAMEOBSERVER_H
00029 #define AVT_VMBAPI_IFRAMEOBSERVER_H
00030 
00031 #include <VimbaCPP/Include/VimbaCPPCommon.h>
00032 #include <VimbaCPP/Include/SharedPointerDefines.h>
00033 #include <VimbaCPP/Include/Frame.h>
00034 
00035 namespace AVT {
00036 namespace VmbAPI {
00037 
00038 class IFrameObserver 
00039 {
00040   public:
00041     //
00042     // Method:      FrameReceived()
00043     //
00044     // Purpose:     The event handler function that gets called whenever
00045     //              a new frame is received
00046     //
00047     // Parameters:
00048     //
00049     // [in]     const FramePtr      pFrame                  The frame that was received
00050     //
00051     IMEXPORT virtual void FrameReceived( const FramePtr pFrame ) = 0;
00052 
00053     //
00054     // Method:      IFrameObserver destructor
00055     //
00056     // Purpose:     Destroys an instance of class IFrameObserver
00057     //
00058     IMEXPORT virtual ~IFrameObserver() {}
00059 
00060   protected:
00061     CameraPtr m_pCamera;
00062     IMEXPORT IFrameObserver( CameraPtr pCamera ) : m_pCamera( pCamera ) {}
00063 
00064     IMEXPORT IFrameObserver( IFrameObserver& ) { /* No copy ctor */ }
00065 
00066   private:
00067     IFrameObserver() { /* No default ctor */ }
00068 };
00069 
00070 }} // namespace AVT::VmbAPI
00071 
00072 #endif


avt_vimba_camera
Author(s): Miquel Massot , Allied Vision Technologies
autogenerated on Thu Jun 6 2019 18:23:39