IFrameObserver.h
Go to the documentation of this file.
1 /*=============================================================================
2  Copyright (C) 2012 Allied Vision Technologies. All Rights Reserved.
3 
4  Redistribution of this file, in original or modified form, without
5  prior written consent of Allied Vision Technologies is prohibited.
6 
7 -------------------------------------------------------------------------------
8 
9  File: IFrameObserver.h
10 
11  Description: Definition of interface AVT::VmbAPI::IFrameObserver.
12 
13 -------------------------------------------------------------------------------
14 
15  THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED
16  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF TITLE,
17  NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18  DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
19  INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20  (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
22  AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
23  TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
24  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 
26 =============================================================================*/
27 
28 #ifndef AVT_VMBAPI_IFRAMEOBSERVER_H
29 #define AVT_VMBAPI_IFRAMEOBSERVER_H
30 
33 #include <VimbaCPP/Include/Frame.h>
34 
35 namespace AVT {
36 namespace VmbAPI {
37 
39 {
40  public:
41  //
42  // Method: FrameReceived()
43  //
44  // Purpose: The event handler function that gets called whenever
45  // a new frame is received
46  //
47  // Parameters:
48  //
49  // [in] const FramePtr pFrame The frame that was received
50  //
51  IMEXPORT virtual void FrameReceived( const FramePtr pFrame ) = 0;
52 
53  //
54  // Method: IFrameObserver destructor
55  //
56  // Purpose: Destroys an instance of class IFrameObserver
57  //
58  IMEXPORT virtual ~IFrameObserver() {}
59 
60  protected:
62  IMEXPORT IFrameObserver( CameraPtr pCamera ) : m_pCamera( pCamera ) {}
63 
64  IMEXPORT IFrameObserver( IFrameObserver& ) { /* No copy ctor */ }
65 
66  private:
67  IFrameObserver() { /* No default ctor */ }
68 };
69 
70 }} // namespace AVT::VmbAPI
71 
72 #endif
NetPointer< Frame, AVT::VmbAPINET::Frame > FramePtr
IMEXPORT IFrameObserver(IFrameObserver &)
NetPointer< Camera, AVT::VmbAPINET::Camera > CameraPtr
virtual IMEXPORT ~IFrameObserver()
virtual IMEXPORT void FrameReceived(const FramePtr pFrame)=0
IMEXPORT IFrameObserver(CameraPtr pCamera)


avt_vimba_camera
Author(s): Miquel Massot , Allied Vision Technologies
autogenerated on Mon Jun 10 2019 12:50:39