43 lines
2.1 KiB
C
43 lines
2.1 KiB
C
//=============================================================================
|
|
// Copyright © 2017 FLIR Integrated Imaging Solutions, 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.
|
|
//=============================================================================
|
|
//=============================================================================
|
|
// $Id: $
|
|
//=============================================================================
|
|
|
|
#ifndef MULTISYNCLIBRARY_H
|
|
#define MULTISYNCLIBRARY_H
|
|
|
|
//=============================================================================
|
|
// Global header file for MultiSync Library.
|
|
//
|
|
// By including this file, all required header files for full MultiSync Library
|
|
// operation will be included automatically. It is recommended that this file
|
|
// be used instead of manually including individual header files.
|
|
//=============================================================================
|
|
|
|
//=============================================================================
|
|
// Platform-specific definitions
|
|
//=============================================================================
|
|
#include "MultiSyncLibraryPlatform.h"
|
|
|
|
//=============================================================================
|
|
// Global definitions
|
|
//=============================================================================
|
|
#include "MultiSyncLibraryDefs.h"
|
|
|
|
#endif // MULTISYNCLIBRARY_H
|