* Updated copyright headers
* Revert "Fixed linker warnings in docs snippets on Windows (#15119)"
This reverts commit 372699ec49.
13 lines
256 B
C++
13 lines
256 B
C++
#include <ie_core.hpp>
|
|
|
|
int main() {
|
|
{
|
|
//! [part2]
|
|
InferenceEngine::Core ie;
|
|
InferenceEngine::CNNNetwork network = ie.ReadNetwork("sample.xml");
|
|
InferenceEngine::ExecutableNetwork exeNetwork = ie.LoadNetwork(network, "AUTO");
|
|
//! [part2]
|
|
}
|
|
return 0;
|
|
}
|