Renaming of files in preparation for code style tools.

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/2/head
Michele Calgaro 3 years ago
parent 9301d49ef2
commit b0b9b9401c
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -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 {

@ -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
EXTRA_DIST = c c++ ttx

@ -1,4 +1,4 @@
#include "polygon.hpp"
#include "polygon.h"
#include <iostream>
#include <dlfcn.h>

@ -1,4 +1,4 @@
#include "polygon.hpp"
#include "polygon.h"
#include <cmath>
class triangle : public polygon

Loading…
Cancel
Save