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: ICameraListObserver.h 00010 00011 Description: Definition of interface AVT::VmbAPI::ICameraListObserver. 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_ICAMERALISTOBSERVER_H 00029 #define AVT_VMBAPI_ICAMERALISTOBSERVER_H 00030 00031 #include <VimbaCPP/Include/VimbaCPPCommon.h> 00032 #include <VimbaCPP/Include/SharedPointerDefines.h> 00033 #include <VimbaCPP/Include/Camera.h> 00034 #include <vector> 00035 00036 00037 namespace AVT { 00038 namespace VmbAPI { 00039 00040 class ICameraListObserver 00041 { 00042 public: 00043 // 00044 // Method: CameraListChanged() 00045 // 00046 // Purpose: The event handler function that gets called whenever 00047 // an ICameraListObserver is triggered. This occurs most 00048 // likely when a camera was plugged in or out 00049 // 00050 // Parameters: 00051 // 00052 // [out] CameraPtr pCam The camera that triggered the event 00053 // [out] UpdateTriggerType reason The reason why the callback routine was triggered 00054 // (e.g., a new camera was plugged in) 00055 // 00056 IMEXPORT virtual void CameraListChanged( CameraPtr pCam, UpdateTriggerType reason ) = 0; 00057 00058 // 00059 // Method: ICameraListObserver destructor 00060 // 00061 // Purpose: Destroys an instance of class ICameraListObserver 00062 // 00063 IMEXPORT virtual ~ICameraListObserver() {} 00064 00065 protected: 00066 IMEXPORT ICameraListObserver() { /*No default ctor*/ } 00067 IMEXPORT ICameraListObserver( const ICameraListObserver& ) { /* No copy ctor */ } 00068 }; 00069 typedef std::vector<ICameraListObserverPtr> ICameraListObserverPtrVector; 00070 00071 }} // namespace AVT::VmbAPI 00072 00073 #endif