repo_id stringlengths 19 138 | file_path stringlengths 32 200 | content stringlengths 1 12.9M | __index_level_0__ int64 0 0 |
|---|---|---|---|
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/package.xml | <package>
<name>xmlrpcpp</name>
<version>1.11.21</version>
<description>
XmlRpc++ is a C++ implementation of the XML-RPC protocol. This version is
heavily modified from the package available on SourceForge in order to
support roscpp's threading model. As such, we are maintaining our
own fork.
</... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/COPYING | GNU LESSER GENERAL PUBLIC LICENSE
Version 2.1, February 1999
Copyright (C) 1991, 1999 Free Software Foundation, Inc.
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
[This... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/.tar | {!!python/unicode 'url': 'https://github.com/ros-gbp/ros_comm-release/archive/release/indigo/xmlrpcpp/1.11.21-0.tar.gz',
!!python/unicode 'version': ros_comm-release-release-indigo-xmlrpcpp-1.11.21-0}
| 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/CHANGELOG.rst | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Changelog for package xmlrpcpp
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1.11.21 (2017-03-06)
--------------------
1.11.20 (2016-06-27)
--------------------
1.11.19 (2016-04-18)
--------------------
* use directory specific compiler flags (`#785 <https://github.com/ros/ros_comm/pull/785>`_)
1.11... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/test/TestValues.vcproj | <?xml version="1.0" encoding = "Windows-1252"?>
<VisualStudioProject
ProjectType="Visual C++"
Version="7.00"
Name="TestValues"
ProjectGUID="{6181BBE3-DA50-4EEE-8D52-1F4245A1D603}"
SccProjectName=""
SccLocalPath="">
<Platforms>
<Platform
Name="Win32"/>
</Platforms>
<Configurations>
<Configuration
Name... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/test/FileClient.cpp | // FileClient.cpp : A simple xmlrpc client. Usage: FileClient serverHost serverPort xmlfile
// Reads an xmlrpc request from the specified xmlfile and calls the method on the server.
//
// Link against xmlrpc lib and whatever socket libs your system needs (ws2_32.lib on windows)
#include "XmlRpc.h"
#include <iostream>... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/test/Validator.vcproj | <?xml version="1.0" encoding = "Windows-1252"?>
<VisualStudioProject
ProjectType="Visual C++"
Version="7.00"
Name="Validator"
ProjectGUID="{E68AB694-4805-43EA-A96E-21B8FE285DE4}"
SccProjectName=""
SccLocalPath="">
<Platforms>
<Platform
Name="Win32"/>
</Platforms>
<Configurations>
<Configuration
Name=... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/test/HelloServer.dsp | # Microsoft Developer Studio Project File - Name="HelloServer" - Package Owner=<4>
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Console Application" 0x0103
CFG=HelloServer - Win32 Debug
!MESSAGE This is not a valid makefile. To build this project u... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/test/TestBase64Server.cpp | // TestBase64Server.cpp : Simple XMLRPC server example. Usage: TestBase64Server serverPort
//
#if defined(_MSC_VER)
# pragma warning(disable:4786) // identifier was truncated in debug info
#endif
#include <iostream>
#include <fstream>
#include <algorithm>
#include <stdlib.h>
#include "XmlRpc.h"
using namespace X... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/test/TestValuesWin32.cpp | // TestValues.cpp : Test XML encoding and decoding of XmlRpcValues.
#define _CRTDBG_MAP_ALLOC
#include <stdlib.h>
#include <crtdbg.h>
#include "XmlRpcValue.h"
#include <assert.h>
#include <iostream>
using namespace XmlRpc;
void testBoolean()
{
XmlRpcValue booleanFalse(false);
XmlRpcValue booleanTrue(true);
... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/test/echoStructTest.xml | <?xml version="1.0"?>
<methodCall>
<methodName>validator1.echoStructTest</methodName>
<params>
<param>
<value><struct>
<member>
<name>substruct0</name>
<value>
<struct>
<member>
<name>curly</name>
<value>
<i4>-76</i4>
</value>
</member>
... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/test/TestBase64Client.vcproj | <?xml version="1.0" encoding = "Windows-1252"?>
<VisualStudioProject
ProjectType="Visual C++"
Version="7.00"
Name="TestBase64Client"
ProjectGUID="{1E8B725B-E898-494C-84C6-DB77EF38E6CB}"
SccProjectName=""
SccLocalPath="">
<Platforms>
<Platform
Name="Win32"/>
</Platforms>
<Configurations>
<Configuration
... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/test/TestXml.cpp | // TestXml.cpp : Test XML encoding and decoding.
// The characters <>&'" are illegal in xml and must be encoded.
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
#include <iostream>
// If you are using MSVC++6, you should update <string> to fix
// BUG: getline Template Function Reads Ex... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/test/arrayOfStructsTest.xml | <?xml version="1.0"?>
<methodCall>
<methodName>validator1.arrayOfStructsTest</methodName>
<params>
<param>
<value><array>
<data>
<value>
<struct>
<member>
<name>curly</name>
<value>
<i4>-84</i4>
</value>
</member>
<member>
<name>larry... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/test/easyStructTest.xml | <?xml version="1.0"?>
<methodCall>
<methodName>validator1.easyStructTest</methodName>
<params>
<param>
<value><struct>
<member>
<name>curly</name>
<value>
<i4>-78</i4>
</value>
</member>
<member>
<name>larry</name>
<value>
<i4>23</i4>
</value>
</membe... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/test/countTheEntities.xml | <?xml version="1.0"?>
<methodCall>
<methodName>validator1.countTheEntities</methodName>
<params>
<param>
<value>&'<p"dgt"&>'<&"'<s>>ehv<j><>iu'<<<y"'>qo>"z"f<l&'"akn<&r'c'wbm&&x''</value>
</param>
</params>
</methodCall>
| 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/test/Makefile | # makefile written for gnu make
CXX = g++
SRC = ../src
CPPFLAGS = -I$(SRC)
DEBUG = -g
#OPTIMIZE = -O2
GCCWARN = -Wall
CXXFLAGS = $(DEBUG) $(GCCWARN) $(OPTIMIZE) $(INCLUDES)
LIB = ../libXmlRpc.a
# Add your system-dependent network libs here
# Solaris: -lsocket -lnsl
SYSTEMLIBS =
LDLIBS = $(SYSTEMLIBS) $(LIB)
T... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/test/bool_test.cpp | // bool_test.cpp : make sure bool variables copy around ok
#include "XmlRpc.h"
#include <iostream>
#include <stdlib.h>
using namespace XmlRpc;
using namespace std;
int main(int argc, char* argv[])
{
XmlRpcValue v(bool(false));
cout << v.toXml() << endl;
XmlRpcValue v2;
v2[0] = int(1);
v2[1] = string();
v2... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/test/TestBase64Server.vcproj | <?xml version="1.0" encoding = "Windows-1252"?>
<VisualStudioProject
ProjectType="Visual C++"
Version="7.00"
Name="TestBase64Server"
ProjectGUID="{D3107CC6-6300-47DE-B183-255B75CFE85A}"
SccProjectName=""
SccLocalPath="">
<Platforms>
<Platform
Name="Win32"/>
</Platforms>
<Configurations>
<Configuration
... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/test/FileClient.dsp | # Microsoft Developer Studio Project File - Name="FileClient" - Package Owner=<4>
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Console Application" 0x0103
CFG=FileClient - Win32 Debug
!MESSAGE This is not a valid makefile. To build this project usi... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/test/HelloServer.cpp | // HelloServer.cpp : Simple XMLRPC server example. Usage: HelloServer serverPort
//
#include "XmlRpc.h"
#include <iostream>
#include <stdlib.h>
using namespace XmlRpc;
// The server
XmlRpcServer s;
// No arguments, result is "Hello".
class Hello : public XmlRpcServerMethod
{
public:
Hello(XmlRpcServer* s) : XmlRp... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/test/TestBase64Server.dsp | # Microsoft Developer Studio Project File - Name="TestBase64Server" - Package Owner=<4>
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Console Application" 0x0103
CFG=TestBase64Server - Win32 Debug
!MESSAGE This is not a valid makefile. To build this... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/test/TestXml.vcproj | <?xml version="1.0" encoding = "Windows-1252"?>
<VisualStudioProject
ProjectType="Visual C++"
Version="7.00"
Name="TestXml"
ProjectGUID="{6F0C2ADA-0341-4183-8FAA-576668F1788A}"
SccProjectName=""
SccLocalPath="">
<Platforms>
<Platform
Name="Win32"/>
</Platforms>
<Configurations>
<Configuration
Name="R... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/test/TestXml.dsp | # Microsoft Developer Studio Project File - Name="TestXml" - Package Owner=<4>
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Console Application" 0x0103
CFG=TestXml - Win32 Debug
!MESSAGE This is not a valid makefile. To build this project using NMA... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/test/echo.xml | <?xml version="1.0"?>
<methodCall>
<methodName>echo</methodName>
<params>
<param><value><string>Hello Chris</string></value></param>
<param><value><i4>123</i4></value></param>
</params>
</methodCall>
| 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/test/FileClient.vcproj | <?xml version="1.0" encoding = "Windows-1252"?>
<VisualStudioProject
ProjectType="Visual C++"
Version="7.00"
Name="FileClient"
ProjectGUID="{C3B49855-CD45-448E-991E-3E4C9B02F465}"
SccProjectName=""
SccLocalPath="">
<Platforms>
<Platform
Name="Win32"/>
</Platforms>
<Configurations>
<Configuration
Name... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/test/port_zero_server.cpp | // HelloServer.cpp : Simple XMLRPC server example. Usage: HelloServer serverPort
//
#include "XmlRpc.h"
#include <iostream>
#include <stdlib.h>
using namespace XmlRpc;
// The server
XmlRpcServer s;
// No arguments, result is "Hello".
class Hello : public XmlRpcServerMethod
{
public:
Hello(XmlRpcServer* s) : XmlRp... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/test/TestValues.cpp | // TestValues.cpp : Test XML encoding and decoding of XmlRpcValues.
#include <stdlib.h>
#include "XmlRpcValue.h"
#include <assert.h>
#include <iostream>
using namespace XmlRpc;
void testBoolean()
{
XmlRpcValue booleanFalse(false);
XmlRpcValue booleanTrue(true);
int offset = 0;
XmlRpcValue booleanFalseXm... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/test/HelloServer.vcproj | <?xml version="1.0" encoding = "Windows-1252"?>
<VisualStudioProject
ProjectType="Visual C++"
Version="7.00"
Name="HelloServer"
ProjectGUID="{08C4FFA8-A9E5-4EEA-9703-53C293C2F724}"
SccProjectName=""
SccLocalPath="">
<Platforms>
<Platform
Name="Win32"/>
</Platforms>
<Configurations>
<Configuration
Nam... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/test/Validator.dsp | # Microsoft Developer Studio Project File - Name="Validator" - Package Owner=<4>
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Console Application" 0x0103
CFG=Validator - Win32 Debug
!MESSAGE This is not a valid makefile. To build this project using... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/test/HelloClient.cpp | // HelloClient.cpp : A simple xmlrpc client. Usage: HelloClient serverHost serverPort
// Link against xmlrpc lib and whatever socket libs your system needs (ws2_32.lib
// on windows)
#include "XmlRpc.h"
#include <iostream>
using namespace XmlRpc;
int main(int argc, char* argv[])
{
if (argc != 3) {
std::cerr << ... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/test/TestBase64Client.dsp | # Microsoft Developer Studio Project File - Name="TestBase64Client" - Package Owner=<4>
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Console Application" 0x0103
CFG=TestBase64Client - Win32 Debug
!MESSAGE This is not a valid makefile. To build this... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/test/TestValues.dsp | # Microsoft Developer Studio Project File - Name="TestValues" - Package Owner=<4>
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Console Application" 0x0103
CFG=TestValues - Win32 Debug
!MESSAGE This is not a valid makefile. To build this project usi... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/test/Validator.cpp | // Validator.cpp : XMLRPC server based on the compliancy test at validator.xmlrpc.com.
//
#include "XmlRpc.h"
using namespace XmlRpc;
#include <iostream>
XmlRpcServer s;
// One argument is passed, an array of structs, each with a member named curly with
// an integer value. Return the sum of those values.
class ... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/test/.cvsignore | Debug
Release
doc
*.ncb
*.opt
*.plg
*.suo
| 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/test/HelloClient.vcproj | <?xml version="1.0" encoding = "Windows-1252"?>
<VisualStudioProject
ProjectType="Visual C++"
Version="7.00"
Name="HelloClient"
ProjectGUID="{F6860B2F-0F3B-445E-92F2-6DF3D36C90F0}"
SccProjectName=""
SccLocalPath="">
<Platforms>
<Platform
Name="Win32"/>
</Platforms>
<Configurations>
<Configuration
Nam... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/test/HelloClient.dsp | # Microsoft Developer Studio Project File - Name="HelloClient" - Package Owner=<4>
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Console Application" 0x0103
CFG=HelloClient - Win32 Debug
!MESSAGE This is not a valid makefile. To build this project u... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/test/TestBase64Client.cpp | // TestBase64Client.cpp : A simple xmlrpc client that returns a png file
// encoded as base64 data to the client.
//
// Usage: TestBase64Client serverHost serverPort outputfile
// Requests a png file from the specified server and saves it in outputfile.
// Link against xmlrpc lib and whatever socket libs your system ne... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/include/XmlRpcServer.h | // this file modified by Morgan Quigley on 22 Apr 2008.
// added features: server can be opened on port 0 and you can read back
// what port the OS gave you
#ifndef _XMLRPCSERVER_H_
#define _XMLRPCSERVER_H_
//
// XmlRpc++ Copyright (c) 2002-2003 by Chris Morley
//
#if defined(_MSC_VER)
# pragma warning(disable:4786) ... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/include/XmlRpcSocket.h | // this file modified by Morgan Quigley on 22 Apr 2008.
// added features: server can be opened on port 0 and you can read back
// what port the OS gave you
#ifndef _XMLRPCSOCKET_H_
#define _XMLRPCSOCKET_H_
//
// XmlRpc++ Copyright (c) 2002-2003 by Chris Morley
//
#if defined(_MSC_VER)
# pragma warning(disable:4786) ... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/include/XmlRpcUtil.h | #ifndef _XMLRPCUTIL_H_
#define _XMLRPCUTIL_H_
//
// XmlRpc++ Copyright (c) 2002-2003 by Chris Morley
//
#if defined(_MSC_VER)
# pragma warning(disable:4786) // identifier was truncated in debug info
#endif
#ifndef MAKEDEPEND
# include <string>
#endif
#include "XmlRpcDecl.h"
#if defined(_MSC_VER)
# define snprintf... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/include/XmlRpcDispatch.h |
#ifndef _XMLRPCDISPATCH_H_
#define _XMLRPCDISPATCH_H_
//
// XmlRpc++ Copyright (c) 2002-2003 by Chris Morley
//
#if defined(_MSC_VER)
# pragma warning(disable:4786) // identifier was truncated in debug info
#endif
#include "XmlRpcDecl.h"
#ifndef MAKEDEPEND
# include <list>
#endif
namespace XmlRpc {
// An RPC ... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/include/base64.h |
// base64.hpp
// Autor Konstantin Pilipchuk
// mailto:lostd@ukr.net
//
//
#if !defined(__BASE64_H_INCLUDED__)
#define __BASE64_H_INCLUDED__ 1
#ifndef MAKEDEPEND
# include <iterator>
#endif
#include <ios>
static
int _base64Chars[]= {'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/include/XmlRpcServerMethod.h |
#ifndef _XMLRPCSERVERMETHOD_H_
#define _XMLRPCSERVERMETHOD_H_
//
// XmlRpc++ Copyright (c) 2002-2003 by Chris Morley
//
#if defined(_MSC_VER)
# pragma warning(disable:4786) // identifier was truncated in debug info
#endif
#include "XmlRpcDecl.h"
#ifndef MAKEDEPEND
# include <string>
#endif
namespace XmlRpc {
... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/include/XmlRpcException.h |
#ifndef _XMLRPCEXCEPTION_H_
#define _XMLRPCEXCEPTION_H_
//
// XmlRpc++ Copyright (c) 2002-2003 by Chris Morley
//
#if defined(_MSC_VER)
# pragma warning(disable:4786) // identifier was truncated in debug info
#endif
#ifndef MAKEDEPEND
# include <string>
#endif
#include "XmlRpcDecl.h"
namespace XmlRpc {
//! A... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/include/XmlRpcValue.h |
#ifndef _XMLRPCVALUE_H_
#define _XMLRPCVALUE_H_
//
// XmlRpc++ Copyright (c) 2002-2003 by Chris Morley
//
#if defined(_MSC_VER)
# pragma warning(disable:4786) // identifier was truncated in debug info
#endif
#include "XmlRpcDecl.h"
#ifndef MAKEDEPEND
# include <map>
# include <string>
# include <vector>
# include... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/include/XmlRpc.h | // this file modified by Morgan Quigley on 22 April 2008 to add
// a std::exception-derived class
#ifndef _XMLRPC_H_
#define _XMLRPC_H_
//
// XmlRpc++ Copyright (c) 2002-2003 by Chris Morley
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
/... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/include/XmlRpcSource.h |
#ifndef _XMLRPCSOURCE_H_
#define _XMLRPCSOURCE_H_
//
// XmlRpc++ Copyright (c) 2002-2003 by Chris Morley
//
#if defined(_MSC_VER)
# pragma warning(disable:4786) // identifier was truncated in debug info
#endif
#include "XmlRpcDecl.h"
namespace XmlRpc {
//! An RPC source represents a file descriptor to monitor
... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/include/XmlRpcDecl.h | /*********************************************************************
*
* Software License Agreement (BSD License)
*
* Copyright (c) 2009, Willow Garage, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following cond... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/include/XmlRpcClient.h |
#ifndef _XMLRPCCLIENT_H_
#define _XMLRPCCLIENT_H_
//
// XmlRpc++ Copyright (c) 2002-2003 by Chris Morley
//
#if defined(_MSC_VER)
# pragma warning(disable:4786) // identifier was truncated in debug info
#endif
#ifndef MAKEDEPEND
# include <string>
#endif
#include "XmlRpcDispatch.h"
#include "XmlRpcSource.h"
#inc... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/include/XmlRpcServerConnection.h | #ifndef _XMLRPCSERVERCONNECTION_H_
#define _XMLRPCSERVERCONNECTION_H_
//
// XmlRpc++ Copyright (c) 2002-2003 by Chris Morley
//
#if defined(_MSC_VER)
# pragma warning(disable:4786) // identifier was truncated in debug info
#endif
#ifndef MAKEDEPEND
# include <string>
#endif
#include "XmlRpcValue.h"
#include "XmlRp... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/src/XmlRpcDispatch.cpp |
#include "XmlRpcDispatch.h"
#include "XmlRpcSource.h"
#include "XmlRpcUtil.h"
#include <math.h>
#include <errno.h>
#include <sys/timeb.h>
#if defined (__ANDROID__)
#include <sys/select.h>
#endif
#if defined(_WINDOWS)
# include <winsock2.h>
# define USE_FTIME
# if defined(_MSC_VER)
# define timeb _timeb
# define f... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/src/XmlRpcServerConnection.cpp |
#include "XmlRpcServerConnection.h"
#include "XmlRpcSocket.h"
#include "XmlRpc.h"
#ifndef MAKEDEPEND
# include <stdio.h>
# include <stdlib.h>
#ifndef _WINDOWS
# include <strings.h>
#endif
# include <string.h>
#endif
using namespace XmlRpc;
// Static data
const char XmlRpcServerConnection::METHODNAME_TAG[] = "<meth... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/src/XmlRpcValue.cpp |
#include "XmlRpcValue.h"
#include "XmlRpcException.h"
#include "XmlRpcUtil.h"
#include "base64.h"
#ifndef MAKEDEPEND
# include <iostream>
# include <ostream>
# include <stdlib.h>
# include <stdio.h>
#endif
#include <sstream>
namespace XmlRpc {
static const char VALUE_TAG[] = "<value>";
static const char V... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/src/XmlRpcServerMethod.cpp |
#include "XmlRpcServerMethod.h"
#include "XmlRpcServer.h"
namespace XmlRpc {
XmlRpcServerMethod::XmlRpcServerMethod(std::string const& name, XmlRpcServer* server)
{
_name = name;
_server = server;
if (_server) _server->addMethod(this);
}
XmlRpcServerMethod::~XmlRpcServerMethod()
{
if (_se... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/src/XmlRpcServer.cpp | // this file modified by Morgan Quigley on 22 Apr 2008.
// added features: server can be opened on port 0 and you can read back
// what port the OS gave you
#include "XmlRpcServer.h"
#include "XmlRpcServerConnection.h"
#include "XmlRpcServerMethod.h"
#include "XmlRpcSocket.h"
#include "XmlRpcUtil.h"
#include "XmlRpcEx... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/src/XmlRpcSource.cpp |
#include "XmlRpcSource.h"
#include "XmlRpcSocket.h"
#include "XmlRpcUtil.h"
namespace XmlRpc {
XmlRpcSource::XmlRpcSource(int fd /*= -1*/, bool deleteOnClose /*= false*/)
: _fd(fd), _deleteOnClose(deleteOnClose), _keepOpen(false)
{
}
XmlRpcSource::~XmlRpcSource()
{
}
void
XmlRpcSource::close... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/src/XmlRpcClient.cpp |
#include "XmlRpcClient.h"
#include "XmlRpcSocket.h"
#include "XmlRpc.h"
#include <stdio.h>
#include <stdlib.h>
#ifndef _WINDOWS
# include <strings.h>
#endif
#include <string.h>
using namespace XmlRpc;
// Static data
const char XmlRpcClient::REQUEST_BEGIN[] =
"<?xml version=\"1.0\"?>\r\n"
"<methodCall><metho... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/src/XmlRpcSocket.cpp | // this file modified by Morgan Quigley on 22 Apr 2008.
// added features: server can be opened on port 0 and you can read back
// what port the OS gave you
#include "XmlRpcSocket.h"
#include "XmlRpcUtil.h"
#ifndef MAKEDEPEND
#if defined(_WINDOWS)
# include <stdio.h>
# include <winsock2.h>
# include <ws2tcpip.h>
//#... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/src/Doxyfile | # Doxyfile 1.3-rc3
# This file describes the settings to be used by the documentation system
# doxygen (www.doxygen.org) for a project
#
# All text after a hash (#) is considered a comment and will be ignored
# The format is:
# TAG = value [value, ...]
# For lists items can also be appended using:
# TAG +=... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp | apollo_public_repos/apollo-platform/ros/ros_comm/xmlrpcpp/src/XmlRpcUtil.cpp |
#include "XmlRpcUtil.h"
#ifndef MAKEDEPEND
# include <ctype.h>
# include <iostream>
# include <stdarg.h>
# include <stdio.h>
# include <string.h>
#endif
#include "XmlRpc.h"
using namespace XmlRpc;
//#define USE_WINDOWS_DEBUG // To make the error and log messages go to VC++ debug output
#ifdef USE_WINDOWS_DEBUG
#d... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/rosbag/CMakeLists.txt | cmake_minimum_required(VERSION 2.8.3)
project(rosbag)
if(NOT WIN32)
set_directory_properties(PROPERTIES COMPILE_OPTIONS "-Wall;-Wextra")
endif()
set(CMAKE_CXX_FLAGS "-std=c++11 ${CMAKE_CXX_FLAGS}")
find_package(catkin REQUIRED COMPONENTS rosbag_storage rosconsole roscpp topic_tools xmlrpcpp)
find_package(Boost REQU... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/rosbag/FORMATS | Version 0:
-------------
topic_name
md5sum
datatype
<repeating N>
time.sec
time.nsec
length
MSGDATA
-------------
Version 1.0:
-------------
#ROSLOG V1.0
quantity
<repeating quantity>
topic_name
md5sum
datatype
<repeating N>
topic_name
time.sec
time.nsec
length
MSGDATA
-------------
Version 1.... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/rosbag/package.xml | <package>
<name>rosbag</name>
<version>1.11.21</version>
<description>
This is a set of tools for recording from and playing back to ROS
topics. It is intended to be high performance and avoids
deserialization and reserialization of the messages.
</description>
<maintainer email="dthomas@osrfoun... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/rosbag/mainpage.dox | /**
\mainpage
\htmlinclude manifest.html
\b rosbag is a set of tools and API's for recording/writing messages to bag files and playing/reading them back.
Most code (not relying on the ROS client library) has been moved to the <a href="../../../rosbag_storage/html/c++/">rosbag_storage</a> package.
*/
| 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/rosbag/rosdoc.yaml | - builder: epydoc
output_dir: python
- builder: doxygen
name: C++ API
output_dir: c++
file_patterns: '*.c *.cpp *.h *.cc *.hh *.dox'
| 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/rosbag/setup.py | #!/usr/bin/env python
from distutils.core import setup
from catkin_pkg.python_setup import generate_distutils_setup
d = generate_distutils_setup(
packages=['rosbag'],
package_dir={'': 'src'},
scripts=['scripts/rosbag'],
requires=['genmsg', 'genpy', 'roslib', 'rospkg']
)
setup(**d)
| 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/rosbag/.tar | {!!python/unicode 'url': 'https://github.com/ros-gbp/ros_comm-release/archive/release/indigo/rosbag/1.11.21-0.tar.gz',
!!python/unicode 'version': ros_comm-release-release-indigo-rosbag-1.11.21-0}
| 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/rosbag/CHANGELOG.rst | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Changelog for package rosbag
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1.11.21 (2017-03-06)
--------------------
* throw exception instead of accessing invalid memory (`#971 <https://github.com/ros/ros_comm/pull/971>`_)
* terminate underlying rosbag play, record on SIGTERM (`#951 <https://github.com/r... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosbag/include | apollo_public_repos/apollo-platform/ros/ros_comm/rosbag/include/rosbag/time_translator.h | /*********************************************************************
* Software License Agreement (BSD License)
*
* Copyright (c) 2010, Willow Garage, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following condit... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosbag/include | apollo_public_repos/apollo-platform/ros/ros_comm/rosbag/include/rosbag/player.h | /*********************************************************************
* Software License Agreement (BSD License)
*
* Copyright (c) 2008, Willow Garage, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following condit... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosbag/include | apollo_public_repos/apollo-platform/ros/ros_comm/rosbag/include/rosbag/recorder.h | /*********************************************************************
* Software License Agreement (BSD License)
*
* Copyright (c) 2008, Willow Garage, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following condit... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosbag | apollo_public_repos/apollo-platform/ros/ros_comm/rosbag/examples/write.cpp | // Copyright (c) 2010, Willow Garage, Inc.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosbag | apollo_public_repos/apollo-platform/ros/ros_comm/rosbag/examples/write.py | # Software License Agreement (BSD License)
#
# Copyright (c) 2012, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosbag | apollo_public_repos/apollo-platform/ros/ros_comm/rosbag/scripts/bagsort.py | #!/usr/bin/env python
# Software License Agreement (BSD License)
#
# Copyright (c) 2009, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosbag | apollo_public_repos/apollo-platform/ros/ros_comm/rosbag/scripts/savemsg.py | #!/usr/bin/env python
# Software License Agreement (BSD License)
#
# Copyright (c) 2009, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosbag | apollo_public_repos/apollo-platform/ros/ros_comm/rosbag/scripts/fastrebag.py | #!/usr/bin/env python
# Software License Agreement (BSD License)
#
# Copyright (c) 2009, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosbag | apollo_public_repos/apollo-platform/ros/ros_comm/rosbag/scripts/topic_renamer.py | #!/usr/bin/env python
# Software License Agreement (BSD License)
#
# Copyright (c) 2009, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosbag | apollo_public_repos/apollo-platform/ros/ros_comm/rosbag/scripts/rosbag | #!/usr/bin/env python
# Software License Agreement (BSD License)
#
# Copyright (c) 2008, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosbag | apollo_public_repos/apollo-platform/ros/ros_comm/rosbag/scripts/fixbag.py | #!/usr/bin/env python
# Software License Agreement (BSD License)
#
# Copyright (c) 2009, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosbag | apollo_public_repos/apollo-platform/ros/ros_comm/rosbag/scripts/bag2png.py | #!/usr/bin/env python
# Software License Agreement (BSD License)
#
# Copyright (c) 2009, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosbag | apollo_public_repos/apollo-platform/ros/ros_comm/rosbag/scripts/fixbag_batch.py | #!/usr/bin/env python
# Software License Agreement (BSD License)
#
# Copyright (c) 2009, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosbag | apollo_public_repos/apollo-platform/ros/ros_comm/rosbag/scripts/makerule.py | #!/usr/bin/env python
# Software License Agreement (BSD License)
#
# Copyright (c) 2009, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosbag | apollo_public_repos/apollo-platform/ros/ros_comm/rosbag/scripts/fix_msg_defs.py | #!/usr/bin/env python
# Software License Agreement (BSD License)
#
# Copyright (c) 2009, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosbag | apollo_public_repos/apollo-platform/ros/ros_comm/rosbag/scripts/fix_md5sums.py | #!/usr/bin/env python
# Software License Agreement (BSD License)
#
# Copyright (c) 2009, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosbag | apollo_public_repos/apollo-platform/ros/ros_comm/rosbag/scripts/fix_moved_messages.py | #!/usr/bin/env python
# Software License Agreement (BSD License)
#
# Copyright (c) 2009, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosbag | apollo_public_repos/apollo-platform/ros/ros_comm/rosbag/src/time_translator.cpp | /*********************************************************************
* Software License Agreement (BSD License)
*
* Copyright (c) 2010, Willow Garage, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following condit... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosbag | apollo_public_repos/apollo-platform/ros/ros_comm/rosbag/src/player.cpp | /*********************************************************************
* Software License Agreement (BSD License)
*
* Copyright (c) 2008, Willow Garage, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following condit... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosbag | apollo_public_repos/apollo-platform/ros/ros_comm/rosbag/src/play.cpp | /*********************************************************************
* Software License Agreement (BSD License)
*
* Copyright (c) 2008, Willow Garage, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following condit... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosbag | apollo_public_repos/apollo-platform/ros/ros_comm/rosbag/src/record.cpp | /*********************************************************************
* Software License Agreement (BSD License)
*
* Copyright (c) 2008, Willow Garage, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following condit... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosbag | apollo_public_repos/apollo-platform/ros/ros_comm/rosbag/src/recorder.cpp | /*********************************************************************
* Software License Agreement (BSD License)
*
* Copyright (c) 2008, Willow Garage, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following condit... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosbag/src | apollo_public_repos/apollo-platform/ros/ros_comm/rosbag/src/rosbag/rosbag_main.py | # Software License Agreement (BSD License)
#
# Copyright (c) 2010, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosbag/src | apollo_public_repos/apollo-platform/ros/ros_comm/rosbag/src/rosbag/bag.py | # Software License Agreement (BSD License)
#
# Copyright (c) 2010, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosbag/src | apollo_public_repos/apollo-platform/ros/ros_comm/rosbag/src/rosbag/__init__.py | # Software License Agreement (BSD License)
#
# Copyright (c) 2009, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm/rosbag/src | apollo_public_repos/apollo-platform/ros/ros_comm/rosbag/src/rosbag/migration.py | # Software License Agreement (BSD License)
#
# Copyright (c) 2009, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/rosout/CMakeLists.txt | cmake_minimum_required(VERSION 2.8.3)
project(rosout)
if(NOT WIN32)
set_directory_properties(PROPERTIES COMPILE_OPTIONS "-Wall;-Wextra")
endif()
find_package(catkin REQUIRED COMPONENTS roscpp rosgraph_msgs)
catkin_package()
include_directories(${catkin_INCLUDE_DIRS})
add_executable(rosout rosout.cpp)
target_link... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/rosout/package.xml | <package>
<name>rosout</name>
<version>1.11.21</version>
<description>
System-wide logging mechanism for messages sent to the /rosout topic.
</description>
<maintainer email="dthomas@osrfoundation.org">Dirk Thomas</maintainer>
<license>BSD</license>
<url>http://ros.org/wiki/rosout</url>
<author>Jo... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/rosout/rosout.cpp | /*
* Copyright (c) 2008, Willow Garage, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this l... | 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/rosout/.tar | {!!python/unicode 'url': 'https://github.com/ros-gbp/ros_comm-release/archive/release/indigo/rosout/1.11.21-0.tar.gz',
!!python/unicode 'version': ros_comm-release-release-indigo-rosout-1.11.21-0}
| 0 |
apollo_public_repos/apollo-platform/ros/ros_comm | apollo_public_repos/apollo-platform/ros/ros_comm/rosout/CHANGELOG.rst | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Changelog for package rosout
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1.11.21 (2017-03-06)
--------------------
1.11.20 (2016-06-27)
--------------------
1.11.19 (2016-04-18)
--------------------
* use directory specific compiler flags (`#785 <https://github.com/ros/ros_comm/pull/785>`_)
1.11.18 (2... | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.