summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-12-18 21:48:35 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-12-18 21:58:37 +0900
commitd0febf3f55c1de0c7600236583576ad26c7bb703 (patch)
tree08c823af853d31f2c58d0fb3b6b13ed22a67e576
parent5753ce851f9fd44b8f82cd514fcda0b4c0bc652b (diff)
downloadlibksquirrel-d0febf3f.tar.gz
libksquirrel-d0febf3f.zip
Renaming of files in preparation for code style tools.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit b0b9b9401cf06859e99ce20b911014404bc08faf)
-rw-r--r--doc/html/ksquirrel-libs-olibs2.html6
-rw-r--r--doc/sources/Makefile.am4
-rw-r--r--doc/sources/c++/main.cpp2
-rw-r--r--doc/sources/c++/polygon.h (renamed from doc/sources/c++/polygon.hpp)0
-rw-r--r--doc/sources/c++/triangle.cpp2
5 files changed, 7 insertions, 7 deletions
diff --git a/doc/html/ksquirrel-libs-olibs2.html b/doc/html/ksquirrel-libs-olibs2.html
index 710df8a..80c6b7a 100644
--- a/doc/html/ksquirrel-libs-olibs2.html
+++ b/doc/html/ksquirrel-libs-olibs2.html
@@ -1143,7 +1143,7 @@ WIDTH="100%"
COLOR="#000000"
><PRE
CLASS="programlisting"
->#include "polygon.hpp"
+>#include "polygon.h"
#include &#60;iostream&#62;
#include &#60;dlfcn.h&#62;
@@ -1185,7 +1185,7 @@ int main() {
></TR
></TABLE
><P
->polygon.hpp:</P
+>polygon.h:</P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
@@ -1236,7 +1236,7 @@ WIDTH="100%"
COLOR="#000000"
><PRE
CLASS="programlisting"
->#include "polygon.hpp"
+>#include "polygon.h"
#include &#60;cmath&#62;
class triangle : public polygon {
diff --git a/doc/sources/Makefile.am b/doc/sources/Makefile.am
index dc0e0e7..ad4be01 100644
--- a/doc/sources/Makefile.am
+++ b/doc/sources/Makefile.am
@@ -11,7 +11,7 @@ install-data-local:
$(INSTALL_SCRIPT) c++/compile $(DESTDIR)$(datadir)/doc/ksquirrel-libs/$(PACKAGE_VERSION)/sources/c++/compile
$(INSTALL_DATA) c++/main.cpp $(DESTDIR)$(datadir)/doc/ksquirrel-libs/$(PACKAGE_VERSION)/sources/c++/main.cpp
$(INSTALL_DATA) c++/triangle.cpp $(DESTDIR)$(datadir)/doc/ksquirrel-libs/$(PACKAGE_VERSION)/sources/c++/triangle.cpp
- $(INSTALL_DATA) c++/polygon.hpp $(DESTDIR)$(datadir)/doc/ksquirrel-libs/$(PACKAGE_VERSION)/sources/c++/polygon.hpp
+ $(INSTALL_DATA) c++/polygon.h $(DESTDIR)$(datadir)/doc/ksquirrel-libs/$(PACKAGE_VERSION)/sources/c++/polygon.h
$(INSTALL_DATA) c++/README $(DESTDIR)$(datadir)/doc/ksquirrel-libs/$(PACKAGE_VERSION)/sources/c++/README
$(INSTALL_DATA) ttx/Makefile.am $(DESTDIR)$(datadir)/doc/ksquirrel-libs/$(PACKAGE_VERSION)/sources/ttx/Makefile.am
@@ -21,4 +21,4 @@ install-data-local:
$(INSTALL_DATA) ttx/fmt_codec_ttx.h $(DESTDIR)$(datadir)/doc/ksquirrel-libs/$(PACKAGE_VERSION)/sources/ttx/fmt_codec_ttx.h
$(INSTALL_DATA) ttx/fmt_codec_ttx.cpp $(DESTDIR)$(datadir)/doc/ksquirrel-libs/$(PACKAGE_VERSION)/sources/ttx/fmt_codec_ttx.cpp
-EXTRA_DIST = c c++ ttx \ No newline at end of file
+EXTRA_DIST = c c++ ttx
diff --git a/doc/sources/c++/main.cpp b/doc/sources/c++/main.cpp
index b8fb8cd..eb3b2fe 100644
--- a/doc/sources/c++/main.cpp
+++ b/doc/sources/c++/main.cpp
@@ -1,4 +1,4 @@
-#include "polygon.hpp"
+#include "polygon.h"
#include <iostream>
#include <dlfcn.h>
diff --git a/doc/sources/c++/polygon.hpp b/doc/sources/c++/polygon.h
index e3189bf..e3189bf 100644
--- a/doc/sources/c++/polygon.hpp
+++ b/doc/sources/c++/polygon.h
diff --git a/doc/sources/c++/triangle.cpp b/doc/sources/c++/triangle.cpp
index 96185d0..008d679 100644
--- a/doc/sources/c++/triangle.cpp
+++ b/doc/sources/c++/triangle.cpp
@@ -1,4 +1,4 @@
-#include "polygon.hpp"
+#include "polygon.h"
#include <cmath>
class triangle : public polygon