rosbag: removing legacy Player check functionality

This commit is contained in:
Tim Field 2010-04-28 04:54:45 +00:00
parent 5c59bc4ab0
commit e08272eeba
2 changed files with 0 additions and 25 deletions

View File

@ -56,9 +56,6 @@ struct PlayerOptions
void check();
bool check_bag;
bool show_defs;
bool quiet;
bool start_paused;
bool at_once;
@ -74,17 +71,6 @@ struct PlayerOptions
std::vector<std::string> bags;
};
//! \todo this information is already stored in the bag file
struct BagContent
{
BagContent(std::string const& d, std::string const& m, std::string const& def);
std::string datatype;
std::string md5sum;
std::string definition;
int count;
};
class Player
{
public:
@ -92,7 +78,6 @@ public:
~Player();
void publish();
int checkBag();
private:
char readCharFromStdin();

View File

@ -52,16 +52,6 @@ using ros::Exception;
namespace rosbag {
// BagContent
BagContent::BagContent(std::string const& d, std::string const& m, std::string const& def) :
datatype(d),
md5sum(m),
definition(def),
count(1)
{
}
// PlayerOptions
PlayerOptions::PlayerOptions() :