~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/util/string.h

  • Committer: Monty Taylor
  • Date: 2011-03-10 18:09:05 UTC
  • mfrom: (2225.2.2 refactor)
  • mto: This revision was merged to the branch mainline in revision 2228.
  • Revision ID: mordred@inaugust.com-20110310180905-ttx05t7q7ff6nl7c
Merge Olad: Refactoring

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
#ifndef DRIZZLED_UTIL_STRING_H
37
37
#define DRIZZLED_UTIL_STRING_H
38
38
 
 
39
#include <utility>
39
40
#include <string>
 
41
#include <vector>
 
42
 
40
43
#include <boost/algorithm/string/predicate.hpp>
41
44
#include <boost/functional/hash.hpp>
 
45
#include <boost/shared_ptr.hpp>
42
46
 
43
47
namespace drizzled
44
48
{
50
54
namespace string {
51
55
typedef boost::shared_ptr<std::string> shared_ptr;
52
56
typedef boost::shared_ptr<const std::string> const_shared_ptr;
 
57
typedef std::vector< std::string > vector;
53
58
}
54
59
 
55
60
struct insensitive_equal_to : std::binary_function<std::string, std::string, bool>