Skip to content

File EventAdapter.h

File List > GenApiNet > EventAdapter.h

Go to the documentation of this file

//-----------------------------------------------------------------------------
//  (c) 2007 by STEMMER IMAGING
//  Author:  Sascha Dorenbeck
//  $Header:
//
//  License: This file is published under the license of the EMVA GenICam  Standard Group.
//  A text file describing the legal terms is included in  your installation as 'GenICam_license.pdf'.
//  If for some reason you are missing  this file please contact the EMVA or visit the website
//  (http://www.genicam.org) for a full copy.
//
//  THIS SOFTWARE IS PROVIDED BY THE EMVA GENICAM STANDARD GROUP "AS IS"
//  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
//  THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
//  PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE EMVA GENICAM STANDARD  GROUP
//  OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,  SPECIAL,
//  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT  LIMITED TO,
//  PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,  DATA, OR PROFITS;
//  OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY  THEORY OF LIABILITY,
//  WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT  (INCLUDING NEGLIGENCE OR OTHERWISE)
//  ARISING IN ANY WAY OUT OF THE USE  OF THIS SOFTWARE, EVEN IF ADVISED OF THE
//  POSSIBILITY OF SUCH DAMAGE.
//-----------------------------------------------------------------------------

#pragma once

#include "Port.h"

namespace Spinnaker
{
    namespace GenApi
    {
        class CEventAdapter;
    }
}

namespace SpinnakerNET
{
    namespace GenApi
    {
        using namespace ::System;

        interface class INodeMap;
        ref class EventPort;

        public ref class EventAdapter abstract
        {
#pragma region Ctor/Dtor
            protected:
                __clrcall EventAdapter(void);

                __clrcall EventAdapter(IntPtr handle);

            public:
                virtual __clrcall ~EventAdapter(void);

                __clrcall !EventAdapter(void);
#pragma endregion

#pragma region EventAdapter Methods
            public:
                void __clrcall AttachNodeMap(SpinnakerNET::GenApi::INodeMap ^nodeMap);

                virtual void __clrcall DeliverMessage(IntPtr message, int length) abstract;

                void __clrcall DeliverMessage(array<Byte> ^message);

                void __clrcall DetachNodeMap();
#pragma endregion

#pragma region Internal Methods
            public:
                property IntPtr Handle
                {
                    IntPtr __clrcall get(void);
                    protected:
                    void __clrcall set(IntPtr handle);
                }

            protected:
                void __clrcall CheckStatus();

                property array<EventPort^> ^ EventPorts
                {
                    array<EventPort^> ^ __clrcall get();
                }
#pragma endregion

#pragma region Member fields
            protected:
                ::Spinnaker::GenApi::CEventAdapter * eventAdapterHandle;

            private:
                bool managed;

                SpinnakerNET::GenApi::INodeMap ^attachedNodeMap;
#pragma endregion
        };
    }
}