]> rtime.felk.cvut.cz Git - hubacji1/bcar.git/commitdiff
Rename header files
authorJiri Vlasak <hubacji1@fel.cvut.cz>
Mon, 12 Jul 2021 18:23:35 +0000 (20:23 +0200)
committerJiri Vlasak <hubacji1@fel.cvut.cz>
Tue, 13 Jul 2021 10:18:32 +0000 (12:18 +0200)
CMakeLists.txt
Doxyfile
incl/bcar.hh [moved from api/bcar.h with 100% similarity]
incl/pslot.hh [moved from api/pslot.h with 100% similarity]
src/bcar.cc
src/pslot.cc
ut/bcar.t.cc
ut/pslot.t.cc

index 03b93af3d022535016505775061f43b2af9403ff..de7def3f86bc5d01175ed2414bafd080edfa6c56 100644 (file)
@@ -2,20 +2,19 @@ cmake_minimum_required(VERSION 2.8)
 project(bcar)
 
 include_directories(${CMAKE_CURRENT_SOURCE_DIR}/incl)
-include_directories(${CMAKE_CURRENT_SOURCE_DIR}/api)
 
 add_library(bcar SHARED
         src/bcar.cc
 )
 set_target_properties(bcar PROPERTIES
-        PUBLIC_HEADER api/bcar.h
+        PUBLIC_HEADER incl/bcar.hh
 )
 
 add_library(pslot SHARED
         src/pslot.cc
 )
 set_target_properties(pslot PROPERTIES
-        PUBLIC_HEADER api/pslot.h
+        PUBLIC_HEADER incl/pslot.hh
 )
 
 include_directories(${CMAKE_CURRENT_SOURCE_DIR}/wvtest/cpp)
index 2048335a9a88c8130821b0f65aeea9749f86287a..620f86248427076dd87c2228ed03cb3fc3a68b2b 100644 (file)
--- a/Doxyfile
+++ b/Doxyfile
@@ -790,7 +790,7 @@ WARN_LOGFILE           =
 # spaces. See also FILE_PATTERNS and EXTENSION_MAPPING
 # Note: If this tag is empty the current directory is searched.
 
-INPUT                  = README.md CHANGELOG.md api/ src/
+INPUT                  = README.md CHANGELOG.md incl/ src/
 
 # This tag can be used to specify the character encoding of the source files
 # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
similarity index 100%
rename from api/bcar.h
rename to incl/bcar.hh
similarity index 100%
rename from api/pslot.h
rename to incl/pslot.hh
index 248ea49b3f31449ddd75dfa4750050c2632681a5..2b4f92e3fe2ac8e6b84db05fc5d0ad0afde8f191 100644 (file)
@@ -1,5 +1,5 @@
-#include "bcar.h"
-#include "pslot.h"
+#include "bcar.hh"
+#include "pslot.hh"
 
 // kinematic constraints
 bool BicycleCar::drivable(const BicycleCar &bc) const
index 336dec92abbbd9d725c7f9e9ab70b252996a67a1..7b4a450785c786f792eaef5106836976210b9bfd 100644 (file)
@@ -1,5 +1,5 @@
 #include <cmath>
-#include "pslot.h"
+#include "pslot.hh"
 
 void ParkingSlot::reverse_border()
 {
index 78f2168096fc9ef58cdfe41ce69459deac72739f..60db856deebdef34d93bcb47f8787dca152991d3 100644 (file)
@@ -1,7 +1,7 @@
 #include <cmath>
 #include "wvtest.h"
 
-#include "bcar.h"
+#include "bcar.hh"
 
 WVTEST_MAIN("bcar basic geometry")
 {
index 41fa77ae68e6dbf8a970a5669a008a7f52f6f0e2..9d55b8a1af2b406dbeb7b9f87957b2b5e73af009 100644 (file)
@@ -1,7 +1,7 @@
 #include <cmath>
 #include "wvtest.h"
 
-#include "pslot.h"
+#include "pslot.hh"
 
 WVTEST_MAIN("pslot basic geometry")
 {