~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/util/string.h

  • Committer: Stewart Smith
  • Date: 2011-01-14 05:14:53 UTC
  • mto: (2086.1.3 build)
  • mto: This revision was merged to the branch mainline in revision 2087.
  • Revision ID: stewart@flamingspork.com-20110114051453-q8nkbvby6n12cpqw
add some FIXMEs to ORDER BY docs about what should be added.

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>
40
39
#include <string>
41
 
#include <vector>
42
 
 
43
40
#include <boost/algorithm/string/predicate.hpp>
44
41
#include <boost/functional/hash.hpp>
45
 
#include <boost/shared_ptr.hpp>
46
42
 
47
43
namespace drizzled
48
44
{
54
50
namespace string {
55
51
typedef boost::shared_ptr<std::string> shared_ptr;
56
52
typedef boost::shared_ptr<const std::string> const_shared_ptr;
57
 
typedef std::vector< std::string > vector;
58
53
}
59
54
 
60
55
struct insensitive_equal_to : std::binary_function<std::string, std::string, bool>