Skip to content
This repository was archived by the owner on Nov 28, 2025. It is now read-only.

Commit b0c89cc

Browse files
committed
Initial commit
Takes the services and messages from dynamic_graph_bridge to put them in this package
0 parents  commit b0c89cc

File tree

9 files changed

+51
-0
lines changed

9 files changed

+51
-0
lines changed

CMakeLists.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
cmake_minimum_required(VERSION 2.4.6)
2+
include($ENV{ROS_ROOT}/core/rosbuild/rosbuild.cmake)
3+
4+
set(ROS_BUILD_TYPE RelWithDebInfo)
5+
6+
rosbuild_init()
7+
8+
set(EXECUTABLE_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/bin)
9+
set(LIBRARY_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/lib)
10+
11+
rosbuild_genmsg()
12+
rosbuild_gensrv()

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include $(shell rospack find mk)/cmake.mk

mainpage.dox

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/**
2+
\mainpage
3+
\htmlinclude manifest.html
4+
5+
\b dynamic_graph_bridge_msgs provides messages and types for dynamic_graph_bridge
6+
package.
7+
8+
*/

manifest.xml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<package>
2+
<description brief="Dynamic graph bridge messages and services">
3+
4+
Dynamic graph bridge messages and services.
5+
6+
</description>
7+
<author>Pierre Gergondet</author>
8+
<license>BSD</license>
9+
<review status="unreviewed" notes=""/>
10+
<url>https://ros.org/wiki/dynamic_graph_bridge_msgs</url>
11+
12+
<export>
13+
<rosdoc config="rosdoc.yaml" />
14+
</export>
15+
</package>

msg/Matrix.msg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
float64[] data
2+
uint32 width

msg/Vector.msg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
float64[] data

rosdoc.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
- builder: doxygen
2+
name: C++ API
3+
output_dir: c++
4+
file_patterns: '*.c *.cpp *.h *.cc *.hh *.dox'

srv/RunCommand.srv

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
string input
2+
---
3+
string result
4+
string stdout
5+
string stderr

srv/RunPythonFile.srv

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
string input
2+
---
3+
string result

0 commit comments

Comments
 (0)