Publishing 2019 R1 content
[platform/upstream/dldt.git] / inference-engine / include / builders / ie_deconvolution_layer.hpp
index c8d3925..a1cdfde 100644 (file)
@@ -1,11 +1,11 @@
-// Copyright (C) 2018 Intel Corporation
+// Copyright (C) 2018-2019 Intel Corporation
 // SPDX-License-Identifier: Apache-2.0
 //
 
 #pragma once
 
 #include <builders/ie_convolution_layer.hpp>
-#include <ie_inetwork.hpp>
+#include <ie_network.hpp>
 #include <string>
 
 namespace InferenceEngine {
@@ -23,9 +23,14 @@ public:
     explicit DeconvolutionLayer(const std::string& name = "");
     /**
      * @brief The constructor creates a builder from generic builder
-     * @param genLayer generic builder
+     * @param layer pointer to generic builder
      */
-    explicit DeconvolutionLayer(Layer& genLayer);
+    explicit DeconvolutionLayer(const Layer::Ptr& layer);
+    /**
+     * @brief The constructor creates a builder from generic builder
+     * @param layer constant pointer to generic builder
+     */
+    explicit DeconvolutionLayer(const Layer::CPtr& layer);
 };
 
 }  // namespace Builder