summaryrefslogtreecommitdiff
path: root/inference-engine/tests/helpers/version_printer.cpp
blob: 7448c99d68a6455a626a6cec0d7f73b7722bd933 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (C) 2018 Intel Corporation
// SPDX-License-Identifier: Apache-2.0
//

#include <stdio.h>

#include <ie_version.hpp>

class PrintVersion {
public:
    PrintVersion() {
        printf("BuildVersion: %s\n",
               InferenceEngine::GetInferenceEngineVersion()->buildNumber);
    }
};

static PrintVersion cons;