Skip to content

Commit

Permalink
add recursive_wrapper<Metadata> to Variant type to be stored inside o…
Browse files Browse the repository at this point in the history
…f Metadata instances
  • Loading branch information
hobu committed May 15, 2012
1 parent 65c1985 commit 9138324
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions include/pdal/Metadata.hpp
Expand Up @@ -167,23 +167,23 @@ enum Type
};


typedef boost::variant<
bool,
float,
double,
boost::int8_t,
boost::uint8_t,
boost::int16_t,
boost::uint16_t,
boost::int32_t,
boost::uint32_t,
boost::int64_t,
boost::uint64_t,
boost::uuids::uuid,
std::string,
pdal::ByteArray,
pdal::SpatialReference,
pdal::Bounds<double> > Variant;
typedef boost::variant< bool,
float,
double,
boost::int8_t,
boost::uint8_t,
boost::int16_t,
boost::uint16_t,
boost::int32_t,
boost::uint32_t,
boost::int64_t,
boost::uint64_t,
boost::uuids::uuid,
std::string,
pdal::ByteArray,
pdal::SpatialReference,
pdal::Bounds<double>,
boost::recursive_wrapper<Metadata> > Variant;



Expand Down

0 comments on commit 9138324

Please sign in to comment.