Strip includes from ripple_data and ripple_basics

This commit is contained in:
Vinnie Falco
2013-06-20 15:21:35 -07:00
parent 2398df7235
commit d26fa0446f
10 changed files with 9 additions and 41 deletions

View File

@@ -8,16 +8,6 @@
// RFC 1751 code converted to C++/Boost.
//
// VFALCO TODO move these
#include <boost/algorithm/string.hpp>
#include <boost/algorithm/string/trim.hpp>
#include <boost/algorithm/string/predicate.hpp>
#include <boost/algorithm/string/classification.hpp>
#include <boost/foreach.hpp>
#include <boost/range/adaptor/copied.hpp>
#include <string>
#include <vector>
char const* RFC1751::s_dictionary [2048] =
{
"A", "ABE", "ACE", "ACT", "AD", "ADA", "ADD",

View File

@@ -18,14 +18,18 @@
#include <iomanip>
#include <iostream>
#include <map>
#include <string>
#include <vector>
#include <boost/algorithm/string/predicate.hpp>
#include <boost/algorithm/string/split.hpp>
#include <boost/algorithm/string/trim.hpp>
#include <boost/algorithm/string/classification.hpp>
#include <boost/format.hpp>
#include <boost/foreach.hpp>
#include <boost/functional/hash.hpp>
#include <boost/lexical_cast.hpp>
#include <boost/range/adaptor/copied.hpp>
#include <boost/regex.hpp>
#include <boost/unordered_map.hpp>
#include <boost/test/unit_test.hpp>