~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/util/string.h

  • Committer: Brian Aker
  • Date: 2011-02-22 06:12:02 UTC
  • mfrom: (2190.1.6 drizzle-build)
  • Revision ID: brian@tangent.org-20110222061202-k03czxykqy4x9hjs
List update, header fixes, multiple symbols, and David deletes some code.

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>