2 // Copyright (c) 2020 Fraunhofer Institute for Applied Information Technology (FIT)
3 // Network Research Group (NET)
4 // Schloss Birlinghoven, 53754 Sankt Augustin, GERMANY
5 // Contact: support@wiback.org
7 // This file is part of the SENF code tree.
8 // It is licensed under the 3-clause BSD License (aka New BSD License).
9 // See LICENSE.txt in the top level directory for details or visit
10 // https://opensource.org/licenses/BSD-3-Clause
15 \brief Setup inline non-template implementation */
20 #include "Connectors.hh"
22 #include "ModuleManager.hh"
24 #define prefix_ inline
25 //-/////////////////////////////////////////////////////////////////////////////////////////////////
29 prefix_ void senf::ppi::connect(connector::GenericActiveOutput & source,
30 connector::GenericPassiveInput & target)
32 source.connect(target);
35 prefix_ void senf::ppi::connect(connector::GenericPassiveOutput & source,
36 connector::GenericActiveInput & target)
38 source.connect(target);
41 prefix_ void senf::ppi::run()
43 ModuleManager::instance().run();
46 prefix_ void senf::ppi::init()
48 ModuleManager::instance().init();
53 //-/////////////////////////////////////////////////////////////////////////////////////////////////
61 // c-file-style: "senf"
62 // indent-tabs-mode: nil
63 // ispell-local-dictionary: "american"
64 // compile-command: "scons -u test"