[caffegen] Include 'InputLayer.h' (#106)
author박종현/동작제어Lab(SR)/Senior Engineer/삼성전자 <jh1302.park@samsung.com>
Fri, 20 Apr 2018 01:20:58 +0000 (10:20 +0900)
committerGitHub Enterprise <noreply-CODE@samsung.com>
Fri, 20 Apr 2018 01:20:58 +0000 (10:20 +0900)
LayerAnalysisPass.h uses 'InputLayer', but does not includes
'InputLayer.h'

This commit updates 'LayerAnalysisPass.h', and introduces
empty 'LayerAnalysisPass.cpp' to ensure that 'LayerAnalysisPass.h' is
self-complete.

Signed-off-by: Jonghyun Park <jh1302.park@samsung.com>
contrib/caffegen/include/LayerAnalysisPass.h
contrib/caffegen/src/LayerAnalysisPass.cpp [new file with mode: 0644]

index ba28129..a3c282c 100644 (file)
@@ -1,6 +1,8 @@
 #ifndef __LAYER_ANALYSIS_PASS_H__
 #define __LAYER_ANALYSIS_PASS_H__
 
+#include "InputLayer.h"
+
 struct LayerAnalysisPass
 {
   virtual ~LayerAnalysisPass() = default;
diff --git a/contrib/caffegen/src/LayerAnalysisPass.cpp b/contrib/caffegen/src/LayerAnalysisPass.cpp
new file mode 100644 (file)
index 0000000..676222a
--- /dev/null
@@ -0,0 +1,3 @@
+#include "LayerAnalysisPass.h"
+
+// NOTE This file is introduced to ensure that 'LayerAnalyissPass.h' is self-complete.