AutoAPMS
Resilient Robot Mission Management
Loading...
Searching...
No Matches
node_registration_loader.cpp
1// Copyright 2024 Robin Müller
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// https://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15#include "auto_apms_behavior_tree_core/node/node_registration_loader.hpp"
16
18{
19
20const std::string NodeRegistrationLoader::BASE_PACKAGE_NAME = "auto_apms_behavior_tree_core";
21const std::string NodeRegistrationLoader::BASE_CLASS_NAME = "auto_apms_behavior_tree::core::NodeRegistrationInterface";
22
27
28} // namespace auto_apms_behavior_tree::core
static const std::string BASE_CLASS_NAME
Name of the base class of all plugins to be loaded.
NodeRegistrationLoader(const std::set< std::string > &exclude_packages={})
NodeRegistrationLoader constructor.
static const std::string BASE_PACKAGE_NAME
Name of the package that contains the base class for this plugin loader.
static PluginClassLoader makeUnambiguousPluginClassLoader(const std::string &base_package, const std::string &base_class, const std::set< std::string > &exclude_packages={}, const std::map< std::string, std::string > &reserved_names={})
Definition resource.hpp:160
PluginClassLoader(const std::string &base_package, const std::string &base_class, const std::set< std::string > &exclude_packages={})
Definition resource.hpp:153
Core API for AutoAPMS's behavior tree implementation.
Definition builder.hpp:30