#include <boost/bind.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/thread/recursive_mutex.hpp>
#include <cstddef>
#include <functional>
#include <memory>
#include <string>
#include <vector>
#include "console_bridge/console.h"
#include "class_loader/class_loader_core.hpp"
#include "class_loader/register_macro.hpp"
#include "class_loader/visibility_control.hpp"
Go to the source code of this file.
Classes | |
class | class_loader::ClassLoader |
This class allows loading and unloading of dynamically linked libraries which contain class definitions from which objects can be created/destroyed during runtime (i.e. class_loader). Libraries loaded by a ClassLoader are only accessible within scope of that ClassLoader object. More... | |
Namespaces | |
class_loader | |
Functions | |
CLASS_LOADER_PUBLIC std::string | class_loader::systemLibraryFormat (const std::string &library_name) |
Returns a platform specific version of a basic library name. More... | |
CLASS_LOADER_PUBLIC std::string | class_loader::systemLibraryPrefix () |
Returns the default library prefix for the native os. More... | |
CLASS_LOADER_PUBLIC std::string | class_loader::systemLibrarySuffix () |
Returns runtime library extension for native os. More... | |