From aef37cd7d06b0a686065773a91d02c8192e3b429 Mon Sep 17 00:00:00 2001
From: Manuel Gunther <siebenkopf@googlemail.com>
Date: Mon, 16 May 2016 11:31:46 -0600
Subject: [PATCH] Moved pure C++ files to cpp subdirectory

---
 bob/io/image/{ => cpp}/bmp.cpp    |  0
 bob/io/image/{ => cpp}/gif.cpp    |  0
 bob/io/image/{ => cpp}/jpeg.cpp   |  0
 bob/io/image/{ => cpp}/netpbm.cpp |  0
 bob/io/image/{ => cpp}/png.cpp    |  0
 bob/io/image/{ => cpp}/pnmio.cpp  |  0
 bob/io/image/{ => cpp}/pnmio.h    |  0
 bob/io/image/{ => cpp}/tiff.cpp   |  0
 setup.py                          | 14 +++++++-------
 9 files changed, 7 insertions(+), 7 deletions(-)
 rename bob/io/image/{ => cpp}/bmp.cpp (100%)
 rename bob/io/image/{ => cpp}/gif.cpp (100%)
 rename bob/io/image/{ => cpp}/jpeg.cpp (100%)
 rename bob/io/image/{ => cpp}/netpbm.cpp (100%)
 rename bob/io/image/{ => cpp}/png.cpp (100%)
 rename bob/io/image/{ => cpp}/pnmio.cpp (100%)
 rename bob/io/image/{ => cpp}/pnmio.h (100%)
 rename bob/io/image/{ => cpp}/tiff.cpp (100%)

diff --git a/bob/io/image/bmp.cpp b/bob/io/image/cpp/bmp.cpp
similarity index 100%
rename from bob/io/image/bmp.cpp
rename to bob/io/image/cpp/bmp.cpp
diff --git a/bob/io/image/gif.cpp b/bob/io/image/cpp/gif.cpp
similarity index 100%
rename from bob/io/image/gif.cpp
rename to bob/io/image/cpp/gif.cpp
diff --git a/bob/io/image/jpeg.cpp b/bob/io/image/cpp/jpeg.cpp
similarity index 100%
rename from bob/io/image/jpeg.cpp
rename to bob/io/image/cpp/jpeg.cpp
diff --git a/bob/io/image/netpbm.cpp b/bob/io/image/cpp/netpbm.cpp
similarity index 100%
rename from bob/io/image/netpbm.cpp
rename to bob/io/image/cpp/netpbm.cpp
diff --git a/bob/io/image/png.cpp b/bob/io/image/cpp/png.cpp
similarity index 100%
rename from bob/io/image/png.cpp
rename to bob/io/image/cpp/png.cpp
diff --git a/bob/io/image/pnmio.cpp b/bob/io/image/cpp/pnmio.cpp
similarity index 100%
rename from bob/io/image/pnmio.cpp
rename to bob/io/image/cpp/pnmio.cpp
diff --git a/bob/io/image/pnmio.h b/bob/io/image/cpp/pnmio.h
similarity index 100%
rename from bob/io/image/pnmio.h
rename to bob/io/image/cpp/pnmio.h
diff --git a/bob/io/image/tiff.cpp b/bob/io/image/cpp/tiff.cpp
similarity index 100%
rename from bob/io/image/tiff.cpp
rename to bob/io/image/cpp/tiff.cpp
diff --git a/setup.py b/setup.py
index e59f544..fdbaf6c 100644
--- a/setup.py
+++ b/setup.py
@@ -390,13 +390,13 @@ setup(
 
       Library("bob.io.image.bob_io_image",
         [
-          "bob/io/image/tiff.cpp",
-          "bob/io/image/gif.cpp",
-          "bob/io/image/png.cpp",
-          "bob/io/image/jpeg.cpp",
-          "bob/io/image/bmp.cpp",
-          "bob/io/image/pnmio.cpp",
-          "bob/io/image/netpbm.cpp",
+          "bob/io/image/cpp/tiff.cpp",
+          "bob/io/image/cpp/gif.cpp",
+          "bob/io/image/cpp/png.cpp",
+          "bob/io/image/cpp/jpeg.cpp",
+          "bob/io/image/cpp/bmp.cpp",
+          "bob/io/image/cpp/pnmio.cpp",
+          "bob/io/image/cpp/netpbm.cpp",
         ],
         packages = packages,
         boost_modules = boost_modules,
-- 
GitLab