|
orca-robotics INTRODUCTION Overview Download and Install Quick Start Documentation Publications REPOSITORY Interfaces Components Libraries Utilities Software Map DEVELOPER Tutorials Examples Dev Guide Dashboard Wiki login/pass: orca/orca PEOPLE Contributors Users Project Download Mailing lists
|
configutils.h00001 /* 00002 * Orca-Robotics Project: Components for robotics 00003 * http://orca-robotics.sf.net/ 00004 * Copyright (c) 2004-2008 Alex Brooks, Alexei Makarenko, Tobias Kaupp 00005 * 00006 * This copy of Orca is licensed to you under the terms described in 00007 * the LICENSE file included in this distribution. 00008 * 00009 */ 00010 00011 #ifndef ORCAICE_CONFIG_UTILITIES_H 00012 #define ORCAICE_CONFIG_UTILITIES_H 00013 00014 00015 #include <orca/ocm.h> 00016 #include <orcaice/context.h> 00017 00018 // Note: functions in this file don't use the network. Those that do are in connectutils.* 00019 00020 namespace orcaice 00021 { 00026 00031 orca::FQInterfaceName getProvidedInterface( const Context&, const std::string &interfaceTag ); 00032 00036 orca::FQTopicName getProvidedTopicWithTag( const Context&, const std::string &interfaceTag, const std::string& subtopic="*" ); 00037 00044 std::string getRequiredInterfaceAsString( const Context&, const std::string &interfaceTag ); 00045 00050 std::vector<std::string> getProvidedTags( const Context& context, const std::string& pattern="" ); 00051 00072 std::vector<std::string> getRequiredTags( const Context& context, const std::string& pattern="" ); 00073 00077 orca::FQComponentName resolveLocalPlatform( const orca::FQComponentName& fqname ); 00078 00080 orca::FQComponentName resolveLocalPlatform( const Context& context, const orca::FQComponentName& fqname ); 00081 00084 std::string resolveLocalPlatform( const Context& context, const std::string& proxy ); 00085 00088 orca::ComponentData getComponentData( const Context& context ); 00089 00091 } // namespace 00092 00093 #endif |
Webmaster: Tobias Kaupp (tobasco at users.sourceforge.net)
1.4.5