blob: b14702d570e3ef3f35435394ba2088d1795595c4 [file] [log] [blame]
/*
* RR_test.cpp
*
* Created on: 18 Jul, 2014
* Author: shock
*/
#include "../src/RR.h"
int
main(int argc, char *argv[])
{
ndn::RR rr;
rr.setRrdata("www2.ex.com");
ndn::Block block = rr.wireEncode();
ndn::RR rr2;
rr2.wireDecode(block);
cout<<rr.getRrdata()<<endl;
return 0;
}//main