aboutsummaryrefslogtreecommitdiff
path: root/xsd-frontend/transformations/schema-per-type.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-05-09 16:45:09 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-05-09 16:45:09 +0200
commitcf2783f792ee634ffbbb36311c9f69956b1d107e (patch)
treec4a4d4a30451a65c63f3e21e04ac238e5a8ed039 /xsd-frontend/transformations/schema-per-type.hxx
parent0bc53d3b22cedbe9e1f773e0a350280aef805eeb (diff)
Use standard containers instead of ones from libcult
Diffstat (limited to 'xsd-frontend/transformations/schema-per-type.hxx')
-rw-r--r--xsd-frontend/transformations/schema-per-type.hxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/xsd-frontend/transformations/schema-per-type.hxx b/xsd-frontend/transformations/schema-per-type.hxx
index 8f582ae..65499a2 100644
--- a/xsd-frontend/transformations/schema-per-type.hxx
+++ b/xsd-frontend/transformations/schema-per-type.hxx
@@ -6,8 +6,9 @@
#ifndef XSD_FRONTEND_TRANSFORMATIONS_SCHEMA_PER_TYPE_HXX
#define XSD_FRONTEND_TRANSFORMATIONS_SCHEMA_PER_TYPE_HXX
+#include <vector>
+
#include <cult/types.hxx>
-#include <cult/containers/vector.hxx>
#include <xsd-frontend/semantic-graph/elements.hxx> // Path
#include <xsd-frontend/semantic-graph/schema.hxx>
@@ -50,7 +51,7 @@ namespace XSDFrontend
Boolean fat_type_file,
Char const* by_value_key = 0);
- Cult::Containers::Vector<SemanticGraph::Schema*>
+ std::vector<SemanticGraph::Schema*>
transform (SemanticGraph::Schema&);
private: