Publishing 2019 R1 content
[platform/upstream/dldt.git] / inference-engine / include / details / ie_so_loader.h
1 // Copyright (C) 2018-2019 Intel Corporation
2 // SPDX-License-Identifier: Apache-2.0
3 //
4
5 /**
6  * @brief A header file for definition of abstraction over platform specific shared objects
7  * @file ie_so_loader.h
8  */
9 #pragma once
10
11 #ifndef _WIN32
12     #include "os/lin_shared_object_loader.h"
13 #else
14     #include "os/win_shared_object_loader.h"
15 #endif