ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question
2

‘TopicQuery’ is not a member of ‘rosbag’

asked 2012-04-24 04:47:49 -0500

niosus gravatar image

updated 2014-01-28 17:12:04 -0500

ngrennan gravatar image

Hi all!

When I try to build my package via rosmake I get an error

error: ‘TopicQuery’ is not a member of ‘rosbag’

The line that generates an error:

rosbag::View view(bag, rosbag::TopicQuery(topics));

The bag file and topics are initialized as follows:

rosbag::Bag bag;
bag.open("test.bag", rosbag::bagmode::Read);
std::vector<std::string> topics;
topics.push_back(std::string("chatter"));
topics.push_back(std::string("numbers"));

I am new to ROS, so maybe someone could suggest what seems to be the problem? P.S. I followed this tutorial

edit retag flag offensive close merge delete

Comments

Please paste your entire program (or the smallest snippet that reproduces the problem).

Mac gravatar image Mac  ( 2012-04-24 11:23:17 -0500 )edit

1 Answer

Sort by » oldest newest most voted
3

answered 2012-04-25 01:29:35 -0500

niosus gravatar image

updated 2012-04-25 01:30:29 -0500

I realized that I just forgot the

#include "rosbag/view.h"

So now it works, sorry for inconvenience.

I don't have enough karma to close my own question, so please feel free to do it.

edit flag offensive delete link more

Comments

I'll vote you up instead; after all, this is the right answer (no matter who found it).

Mac gravatar image Mac  ( 2012-04-25 04:24:16 -0500 )edit

Question Tools

1 follower

Stats

Asked: 2012-04-24 04:47:49 -0500

Seen: 565 times

Last updated: Apr 25 '12