Publishing 2019 R1 content
[platform/upstream/dldt.git] / inference-engine / tests / unit / mocks / mock_error_listener.hpp
1 // Copyright (C) 2018-2019 Intel Corporation
2 // SPDX-License-Identifier: Apache-2.0
3 //
4
5 #pragma once
6
7 #include "inference_engine.hpp"
8 #include <gmock/gmock.h>
9
10 class Listener : public InferenceEngine::IErrorListener {
11 public:
12     MOCK_QUALIFIED_METHOD1(onError, noexcept, void (const char * err));
13 };