Publishing 2019 R1.1 content and Myriad plugin sources (#162)
[platform/upstream/dldt.git] / inference-engine / src / inference_engine / transform / transformations / sub.hpp
1 // Copyright (C) 2018-2019 Intel Corporation
2 // SPDX-License-Identifier: Apache-2.0
3 //
4
5 #pragma once
6
7 #include <transform/transformation.hpp>
8
9 namespace InferenceEngine {
10 namespace Transform {
11
12 class TransformationSub: public Transformation {
13 public:
14     TransformationSub();
15     void execute(Network& network) override;
16 };
17
18 }  // namespace Transform
19 }  // namespace InferenceEngine