Main Page
Namespaces
Namespace List
Namespace Members
All
Functions
Variables
Classes
Class List
Class Hierarchy
Class Members
All
_
a
b
c
d
e
g
h
i
l
m
n
p
r
s
t
v
Functions
_
a
c
d
g
i
l
m
n
p
r
s
v
Variables
a
b
c
d
e
h
i
l
m
n
p
r
s
t
v
Typedefs
Files
File List
File Members
All
Functions
Variables
src
ros_lib
ros
publisher.h
Go to the documentation of this file.
1
/*
2
* Software License Agreement (BSD License)
3
*
4
* Copyright (c) 2011, Willow Garage, Inc.
5
* All rights reserved.
6
*
7
* Redistribution and use in source and binary forms, with or without
8
* modification, are permitted provided that the following conditions
9
* are met:
10
*
11
* * Redistributions of source code must retain the above copyright
12
* notice, this list of conditions and the following disclaimer.
13
* * Redistributions in binary form must reproduce the above
14
* copyright notice, this list of conditions and the following
15
* disclaimer in the documentation and/or other materials provided
16
* with the distribution.
17
* * Neither the name of Willow Garage, Inc. nor the names of its
18
* contributors may be used to endorse or promote prducts derived
19
* from this software without specific prior written permission.
20
*
21
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
27
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
29
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
31
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32
* POSSIBILITY OF SUCH DAMAGE.
33
*/
34
35
#ifndef _ROS_PUBLISHER_H_
36
#define _ROS_PUBLISHER_H_
37
38
#include "rosserial_msgs/TopicInfo.h"
39
#include "ros/node_handle.h"
40
41
namespace
ros
42
{
43
44
/* Generic Publisher */
45
class
Publisher
46
{
47
public
:
48
Publisher
(
const
char
* topic_name,
Msg
* msg,
int
endpoint = rosserial_msgs::TopicInfo::ID_PUBLISHER) :
49
topic_(topic_name),
50
msg_(msg),
51
endpoint_(endpoint) {};
52
53
int
publish
(
const
Msg
* msg)
54
{
55
return
nh_->
publish
(id_, msg);
56
};
57
int
getEndpointType()
58
{
59
return
endpoint_;
60
}
61
62
const
char
* topic_;
63
Msg
*msg_;
64
// id_ and no_ are set by NodeHandle when we advertise
65
int
id_;
66
NodeHandleBase_* nh_;
67
68
private
:
69
int
endpoint_;
70
};
71
72
}
73
74
#endif
Msg
ros
ros::Publisher::publish
void publish(const boost::shared_ptr< M > &message) const
ros::Publisher::Publisher
Publisher()
ros::NodeHandleBase_::publish
virtual int publish(int id, const Msg *msg)=0
rosserial_client
Author(s): Michael Ferguson, Adam Stambler
autogenerated on Wed Mar 2 2022 00:58:01