Publishing 2019 R1 content
[platform/upstream/dldt.git] / inference-engine / tests / helpers / version_printer.cpp
1 // Copyright (C) 2018-2019 Intel Corporation
2 // SPDX-License-Identifier: Apache-2.0
3 //
4
5 #include <stdio.h>
6
7 #include <ie_version.hpp>
8
9 class PrintVersion {
10 public:
11     PrintVersion() {
12         printf("BuildVersion: %s\n",
13                InferenceEngine::GetInferenceEngineVersion()->buildNumber);
14     }
15 };
16
17 static PrintVersion cons;