From fce86b22a2367f1be1f9aae5e1ba3d18d1371b74 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Tue, 8 Dec 2020 22:26:17 +0900 Subject: Renaming of files in preparation for code style tools. Signed-off-by: Michele Calgaro --- arts/runtime/localfactory_impl.cpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 arts/runtime/localfactory_impl.cpp (limited to 'arts/runtime/localfactory_impl.cpp') diff --git a/arts/runtime/localfactory_impl.cpp b/arts/runtime/localfactory_impl.cpp new file mode 100644 index 00000000..bf55271c --- /dev/null +++ b/arts/runtime/localfactory_impl.cpp @@ -0,0 +1,15 @@ +#include "artsbuilder.h" + +using namespace Arts; +using namespace std; + +class LocalFactory_impl : virtual public LocalFactory_skel { +public: + Object createObject(const string& name) + { + return SubClass(name); + } +}; + +REGISTER_IMPLEMENTATION(LocalFactory_impl); + -- cgit v1.2.1