Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RobotAPI
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software
ArmarX
RobotAPI
Merge requests
!11
apps now use runSimpleComponentApp (less code, less duplication)
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
apps now use runSimpleComponentApp (less code, less duplication)
UsingRunSimpleComponentApp
into
master
Overview
0
Commits
1
Pipelines
0
Changes
41
Merged
Raphael Grimm
requested to merge
UsingRunSimpleComponentApp
into
master
8 years ago
Overview
0
Commits
1
Pipelines
0
Changes
41
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
e65c7ab7
1 commit,
8 years ago
41 files
+
85
−
745
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
41
Search (e.g. *.vue) (Ctrl+P)
source/RobotAPI/applications/BusInspectionUnitObserver/BusInspectionUnitObserverApp.h deleted
100644 → 0
+
0
−
41
Options
/*
* This file is part of ArmarX.
*
* Copyright (C) 2012-2016, High Performance Humanoid Technologies (H2T), Karlsruhe Institute of Technology (KIT), all rights reserved.
*
* ArmarX is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* ArmarX is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @package RobotAPI::applications
* @author Peter Kaiser (peter dot kaiser at kit dot edu)
* @date 2015
* @copyright http://www.gnu.org/licenses/gpl-2.0.txt
* GNU General Public License
*/
#include
<ArmarXCore/core/application/Application.h>
#include
<RobotAPI/components/units/BusInspectionUnitObserver.h>
namespace
armarx
{
class
BusInspectionUnitObserverApp
:
virtual
public
armarx
::
Application
{
void
setup
(
const
ManagedIceObjectRegistryInterfacePtr
&
registry
,
Ice
::
PropertiesPtr
properties
)
{
registry
->
addObject
(
Component
::
create
<
BusInspectionUnitObserver
>
(
properties
));
}
};
}
Loading