Renamed classes in abstract layer of RPC service from XmlRpc* to Rpc*.

Now JSON-RPC is available by default regardless of XML library.
XML-RPC becomes available when XML library is available.
This commit is contained in:
Tatsuhiro Tsujikawa 2011-03-14 16:38:54 +09:00
parent 5a1fb3875f
commit f0cfbb21c1
37 changed files with 715 additions and 711 deletions

View file

@ -4,7 +4,7 @@
namespace aria2 {
namespace xmlrpc {
namespace rpc {
class XmlRpcRequestParserControllerTest:public CppUnit::TestFixture {
@ -157,6 +157,6 @@ void XmlRpcRequestParserControllerTest::testPopArrayFrame_compound()
CPPUNIT_ASSERT_EQUAL(std::string("jp"), asString(countryList->get(0))->s());
}
} // namespace xmlrpc
} // namespace rpc
} // namespace aria2