summaryrefslogtreecommitdiffstats
path: root/arts/runtime/compatibility.cc
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/compatibility.cc
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/compatibility.cc')
-rw-r--r--arts/runtime/compatibility.cc56
1 files changed, 0 insertions, 56 deletions
diff --git a/arts/runtime/compatibility.cc b/arts/runtime/compatibility.cc
deleted file mode 100644
index 72bed765..00000000
--- a/arts/runtime/compatibility.cc
+++ /dev/null
@@ -1,56 +0,0 @@
- /*
-
- Copyright (C) 1999 Stefan Westerfeld
- stefan@space.twc.de
-
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-
- */
-
-#include "compatibility.h"
-#include "debug.h"
-#include <iostream>
-
-#undef DEBUG_COMPATIBILITY
-
-using namespace std;
-
-string Arts::OldFormatTranslator::newModuleName(const string& module)
-{
-#ifdef DEBUG_COMPATIBILITY
- arts_debug("COMPAT: %s", module.c_str());
-#endif
-
- if(module.substr(0,10) == "Interface_") return "Arts::"+module;
- if(module.substr(0,6) == "Synth_") return "Arts::"+module;
- return module;
-}
-
-string Arts::OldFormatTranslator::newPortName(const string& module, const string& port)
-{
-#ifdef DEBUG_COMPATIBILITY
- arts_debug("COMPAT: %s.%s", module.c_str(), port.c_str());
-#endif
-
- if(module == "Arts::Synth_MUL") {
- if(port == "invalue") return "invalue1";
- if(port == "faktor") return "invalue2";
- }
- if(module == "Arts::Synth_ADD") {
- if(port == "invalue") return "invalue1";
- if(port == "addit") return "invalue2";
- }
- return port;
-}