~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/util/string.h

  • Committer: Brian Aker
  • Date: 2011-02-17 10:09:00 UTC
  • mfrom: (2173.2.1 clean-include-usuage)
  • Revision ID: brian@tangent.org-20110217100900-4tpuxxzdl1sj00sh
Merge Monty for headers.

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
namespace string {
55
55
typedef boost::shared_ptr<std::string> shared_ptr;
56
56
typedef boost::shared_ptr<const std::string> const_shared_ptr;
 
57
typedef std::vector< std::string > vector;
57
58
}
58
59
 
59
60
struct insensitive_equal_to : std::binary_function<std::string, std::string, bool>