Publishing 2019 R1 content
[platform/upstream/dldt.git] / inference-engine / src / inference_engine / transform / transformation.cpp
1 // Copyright (C) 2019 Intel Corporation
2 // SPDX-License-Identifier: Apache-2.0
3 //
4
5 #include <transform/transformation.hpp>
6 #include <string>
7
8 namespace InferenceEngine {
9 namespace Transform {
10
11 std::string Transformation::getName() const {
12     return name;
13 }
14
15 void Transformation::setName(const std::string& name) {
16     this->name = name;
17 }
18
19 }  // namespace Transform
20 }  // namespace InferenceEngine