summaryrefslogtreecommitdiffstats
path: root/arts/runtime
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-12-08 22:26:17 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-12-08 22:26:17 +0900
commitfce86b22a2367f1be1f9aae5e1ba3d18d1371b74 (patch)
tree707fe84fef0569a152e632ce1e16407f9d19a3d2 /arts/runtime
parent41fa1afc2c571b909acd0312e4eebb4a0b21e3c2 (diff)
downloadtdemultimedia-fce86b22a2367f1be1f9aae5e1ba3d18d1371b74.tar.gz
tdemultimedia-fce86b22a2367f1be1f9aae5e1ba3d18d1371b74.zip
Renaming of files in preparation for code style tools.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'arts/runtime')
-rw-r--r--arts/runtime/CMakeLists.txt8
-rw-r--r--arts/runtime/Makefile.am10
-rw-r--r--arts/runtime/artsbuilder.idl2
-rw-r--r--arts/runtime/artsbuilderloader_impl.cpp (renamed from arts/runtime/artsbuilderloader_impl.cc)0
-rw-r--r--arts/runtime/compatibility.cpp (renamed from arts/runtime/compatibility.cc)0
-rw-r--r--arts/runtime/localfactory_impl.cpp (renamed from arts/runtime/localfactory_impl.cc)0
-rw-r--r--arts/runtime/moduleinfo.cpp (renamed from arts/runtime/moduleinfo.cc)0
-rw-r--r--arts/runtime/sequenceutils.cpp (renamed from arts/runtime/sequenceutils.cc)0
-rw-r--r--arts/runtime/structurebuilder_impl.cpp (renamed from arts/runtime/structurebuilder_impl.cc)0
-rw-r--r--arts/runtime/structures_impl.cpp (renamed from arts/runtime/structures_impl.cc)0
10 files changed, 10 insertions, 10 deletions
diff --git a/arts/runtime/CMakeLists.txt b/arts/runtime/CMakeLists.txt
index 794ec7f5..ac8692c4 100644
--- a/arts/runtime/CMakeLists.txt
+++ b/arts/runtime/CMakeLists.txt
@@ -31,9 +31,9 @@ add_definitions(
tde_add_library( artsbuilder SHARED
SOURCES
- artsbuilder.cc sequenceutils.cc
- structurebuilder_impl.cc structures_impl.cc moduleinfo.cc
- compatibility.cc localfactory_impl.cc artsbuilderloader_impl.cc
+ artsbuilder.cpp sequenceutils.cpp
+ structurebuilder_impl.cpp structures_impl.cpp moduleinfo.cpp
+ compatibility.cpp localfactory_impl.cpp artsbuilderloader_impl.cpp
VERSION 0.0.0
LINK
mcop artsflow artsflow_idl ${DL_LIBRARIES} ${ARTS_LIBRARIES}
@@ -42,7 +42,7 @@ tde_add_library( artsbuilder SHARED
add_custom_command(
OUTPUT
- artsbuilder.cc artsbuilder.h
+ artsbuilder.cpp artsbuilder.h
artsbuilder.mcoptype artsbuilder.mcopclass
COMMAND ${ARTS_MCOPIDL_EXECUTABLE} -t
-I${ARTS_INCLUDEDIR} ${CMAKE_CURRENT_SOURCE_DIR}/artsbuilder.idl
diff --git a/arts/runtime/Makefile.am b/arts/runtime/Makefile.am
index d97ad50b..5a883d83 100644
--- a/arts/runtime/Makefile.am
+++ b/arts/runtime/Makefile.am
@@ -7,9 +7,9 @@ INCLUDES= -I$(arts_includes) $(all_includes)
lib_LTLIBRARIES = libartsbuilder.la
-libartsbuilder_la_SOURCES = artsbuilder.cc sequenceutils.cc \
- structurebuilder_impl.cc structures_impl.cc moduleinfo.cc \
- compatibility.cc localfactory_impl.cc artsbuilderloader_impl.cc
+libartsbuilder_la_SOURCES = artsbuilder.cpp sequenceutils.cpp \
+ structurebuilder_impl.cpp structures_impl.cpp moduleinfo.cpp \
+ compatibility.cpp localfactory_impl.cpp artsbuilderloader_impl.cpp
libartsbuilder_la_LIBADD = -lmcop -lartsflow $(LIBDL) -lartsflow_idl
libartsbuilder_la_COMPILE_FIRST = artsbuilder.h
@@ -19,10 +19,10 @@ libartsbuilder_la_LDFLAGS = $(all_libraries) -L$(arts_libraries) \
artsbuilder.lo: artsbuilder.h
artsbuilder.mcopclass: artsbuilder.h
artsbuilder.mcoptype: artsbuilder.h
-artsbuilder.h artsbuilder.cc: $(srcdir)/artsbuilder.idl $(MCOPIDL)
+artsbuilder.h artsbuilder.cpp: $(srcdir)/artsbuilder.idl $(MCOPIDL)
$(MCOPIDL) -t -I$(arts_includes) $(srcdir)/artsbuilder.idl
-DISTCLEANFILES = artsbuilder.cc artsbuilder.h \
+DISTCLEANFILES = artsbuilder.cpp artsbuilder.h \
artsbuilder.mcoptype artsbuilder.mcopclass
####### install idl files
diff --git a/arts/runtime/artsbuilder.idl b/arts/runtime/artsbuilder.idl
index 42ff393a..4cc62329 100644
--- a/arts/runtime/artsbuilder.idl
+++ b/arts/runtime/artsbuilder.idl
@@ -1,5 +1,5 @@
/*
- * DISCLAIMER: The interfaces in artsbuilder.idl (and the derived .cc/.h files)
+ * DISCLAIMER: The interfaces in artsbuilder.idl (and the derived .cpp/.h files)
* DO NOT GUARANTEE BINARY COMPATIBILITY YET.
*
* They are intended for developers. You shouldn't expect that applications in
diff --git a/arts/runtime/artsbuilderloader_impl.cc b/arts/runtime/artsbuilderloader_impl.cpp
index 238daae2..238daae2 100644
--- a/arts/runtime/artsbuilderloader_impl.cc
+++ b/arts/runtime/artsbuilderloader_impl.cpp
diff --git a/arts/runtime/compatibility.cc b/arts/runtime/compatibility.cpp
index 72bed765..72bed765 100644
--- a/arts/runtime/compatibility.cc
+++ b/arts/runtime/compatibility.cpp
diff --git a/arts/runtime/localfactory_impl.cc b/arts/runtime/localfactory_impl.cpp
index bf55271c..bf55271c 100644
--- a/arts/runtime/localfactory_impl.cc
+++ b/arts/runtime/localfactory_impl.cpp
diff --git a/arts/runtime/moduleinfo.cc b/arts/runtime/moduleinfo.cpp
index 7bef4464..7bef4464 100644
--- a/arts/runtime/moduleinfo.cc
+++ b/arts/runtime/moduleinfo.cpp
diff --git a/arts/runtime/sequenceutils.cc b/arts/runtime/sequenceutils.cpp
index 335287d4..335287d4 100644
--- a/arts/runtime/sequenceutils.cc
+++ b/arts/runtime/sequenceutils.cpp
diff --git a/arts/runtime/structurebuilder_impl.cc b/arts/runtime/structurebuilder_impl.cpp
index 43e5485c..43e5485c 100644
--- a/arts/runtime/structurebuilder_impl.cc
+++ b/arts/runtime/structurebuilder_impl.cpp
diff --git a/arts/runtime/structures_impl.cc b/arts/runtime/structures_impl.cpp
index 7c5a5e05..7c5a5e05 100644
--- a/arts/runtime/structures_impl.cc
+++ b/arts/runtime/structures_impl.cpp