//=============================================================================
// Copyright (c) 2001-2021 FLIR Systems, Inc. All Rights Reserved.
//
// This software is the confidential and proprietary information of FLIR
// Integrated Imaging Solutions, Inc. ("Confidential Information"). You
// shall not disclose such Confidential Information and shall use it only in
// accordance with the terms of the license agreement you entered into
// with FLIR Integrated Imaging Solutions, Inc. (FLIR).
//
// FLIR MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
// SOFTWARE, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
// PURPOSE, OR NON-INFRINGEMENT. FLIR SHALL NOT BE LIABLE FOR ANY DAMAGES
// SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING
// THIS SOFTWARE OR ITS DERIVATIVES.
//=============================================================================

#ifndef SPINNAKER_GENAPI_H
#define SPINNAKER_GENAPI_H

#include "Node.h"
#include "NodeMap.h"
#include "NodeCallback.h"
#include "Types.h"
#include "Synch.h"
#include "ValueNode.h"
#include "EnumClasses.h"
#include "EnumNode.h"
#include "EnumEntryNode.h"
#include "EnumNodeT.h"
#include "IntegerNode.h"
#include "FloatNode.h"
#include "StringNode.h"
#include "BooleanNode.h"
#include "CategoryNode.h"
#include "CommandNode.h"
#include "RegisterNode.h"
#include "ChunkAdapter.h"
#include "ChunkAdapterGeneric.h"
#include "ChunkAdapterDcam.h"
#include "ChunkAdapterU3V.h"
#include "ChunkAdapterGEV.h"
#include "ChunkPort.h"
#include "EventAdapter.h"
#include "EventAdapterGeneric.h"
#include "EventAdapter1394.h"
#include "EventAdapterU3V.h"
#include "EventAdapterGEV.h"
#include "EventPort.h"
#include "IntRegNode.h"
#include "StringRegNode.h"
#include "Synch.h"
#include "FloatRegNode.h"
#include "Pointer.h"
#include "PortWriteList.h"
#include "PortNode.h"
#include "Persistence.h"
#include "GCString.h"
#include "GCStringVector.h"
#include "GCTypes.h"

#ifdef _WIN32
#pragma warning(push)
#pragma warning(disable : 4244) // conversion from 'std::streamsize' to 'size_t'
#include "Filestream.h"
#pragma warning(pop)
#else
#include "Filestream.h"
#endif

#include "IPort.h"
#include "IDeviceInfo.h"

#ifdef _WIN32
// GenApi Warnings
#pragma warning(disable : 4068) // unknown pragma; refers to BullsEyeCoverage
#pragma warning(disable : 4251) // XXX needs to have dll-interface to be used by clients of class YYY
#pragma warning(disable : 4702) // unreachable code in <list>,...
#pragma warning(disable : 4275) // non dll-interface structXXX used as base
#pragma warning(disable : 4312) // 'type cast' : conversion from 'uintptr_t' to 'void *' of greater size
#endif

#endif // SPINNAKER_GENAPI_H
