Publishing 2019 R1 content
[platform/upstream/dldt.git] / inference-engine / src / inference_engine / network_serializer.h
index a67f4f4..e39ebc0 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2018 Intel Corporation
+// Copyright (C) 2018-2019 Intel Corporation
 // SPDX-License-Identifier: Apache-2.0
 //
 
@@ -6,6 +6,8 @@
 
 #include <string>
 
+#include "xml_parse_utils.h"
+
 namespace InferenceEngine {
 namespace details {
 
@@ -17,7 +19,9 @@ public:
     static void serialize(const std::string &xmlPath, const std::string &binPath, const InferenceEngine::ICNNNetwork& network);
 
 private:
-    static void updateStdLayerParams(InferenceEngine::CNNLayer::Ptr layer);
+    static void updateStdLayerParams(const InferenceEngine::CNNLayer::Ptr &layer);
+    static void updatePreProcInfo(const InferenceEngine::ICNNNetwork& network, pugi::xml_node &netXml);
+    static void updateStatisticsInfo(const InferenceEngine::ICNNNetwork& network, pugi::xml_node &netXml);
 };
 
 }  // namespace details