From 126c11237dce4c47c1fc8596406a0bff84fe01b7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EB=B0=95=EC=A2=85=ED=98=84/On-Device=20Lab=28SR=29/Staff?= =?utf8?q?=20Engineer/=EC=82=BC=EC=84=B1=EC=A0=84=EC=9E=90?= Date: Tue, 2 Jul 2019 12:12:59 +0900 Subject: [PATCH] [moco/tf] Move Transform.h to the top-level (#4038) This change makes it easy to distinguish Transform declaration (Transform.h) and enumerate its implementations (all the files under Transforms/). Signed-off-by: Jonghyun Park --- contrib/moco-tf/src/Phase.h | 2 +- contrib/moco-tf/src/{Transforms => }/Transform.cpp | 0 contrib/moco-tf/src/{Transforms => }/Transform.h | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename contrib/moco-tf/src/{Transforms => }/Transform.cpp (100%) rename contrib/moco-tf/src/{Transforms => }/Transform.h (100%) diff --git a/contrib/moco-tf/src/Phase.h b/contrib/moco-tf/src/Phase.h index e95449b..509eb68 100644 --- a/contrib/moco-tf/src/Phase.h +++ b/contrib/moco-tf/src/Phase.h @@ -17,7 +17,7 @@ #ifndef __MOCO_TF_PHASE_H__ #define __MOCO_TF_PHASE_H__ -#include "Transforms/Transform.h" +#include "Transform.h" #include diff --git a/contrib/moco-tf/src/Transforms/Transform.cpp b/contrib/moco-tf/src/Transform.cpp similarity index 100% rename from contrib/moco-tf/src/Transforms/Transform.cpp rename to contrib/moco-tf/src/Transform.cpp diff --git a/contrib/moco-tf/src/Transforms/Transform.h b/contrib/moco-tf/src/Transform.h similarity index 100% rename from contrib/moco-tf/src/Transforms/Transform.h rename to contrib/moco-tf/src/Transform.h -- 2.7.4