Update on the JSON lib to support new parts encoding.

This commit is contained in:
Erik Zandvliet 2013-09-15 16:08:30 +02:00
parent b10185be2a
commit 5ea87a37f7
2 changed files with 17 additions and 0 deletions

View file

@ -5,6 +5,7 @@
#include <deque>
#include <map>
#include <istream>
#include <vector>
//empty definition of DTSC::Stream so it can be a friend.
namespace DTSC {
@ -107,4 +108,5 @@ namespace JSON {
Value fromString(std::string json);
Value fromFile(std::string filename);
std::string encodeVector(std::vector<long long int> & toEncode);
}