Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r53647 - sandbox/pinhole/boost/pinhole
From: jmcintyre_at_[hidden]
Date: 2009-06-04 20:51:55


Author: jared
Date: 2009-06-04 20:51:55 EDT (Thu, 04 Jun 2009)
New Revision: 53647
URL: http://svn.boost.org/trac/boost/changeset/53647

Log:
pinhole - commit missing file
Added:
   sandbox/pinhole/boost/pinhole/types.hpp (contents, props changed)

Added: sandbox/pinhole/boost/pinhole/types.hpp
==============================================================================
--- (empty file)
+++ sandbox/pinhole/boost/pinhole/types.hpp 2009-06-04 20:51:55 EDT (Thu, 04 Jun 2009)
@@ -0,0 +1,32 @@
+// Pinhole category_iterator.hpp file
+//
+// Copyright Jared McIntyre 2009.
+// Distributed under the Boost Software License, Version 1.0.
+// (See accompanying file LICENSE_1_0.txt or copy at
+// http://www.boost.org/LICENSE_1_0.txt)
+
+#ifndef BOOST_PINHOLE_TYPES
+#define BOOST_PINHOLE_TYPES
+
+#include <set>
+#include <string>
+#include <list>
+#include <map>
+
+namespace boost { namespace pinhole
+{
+ class property_group;
+
+ namespace detail
+ {
+ struct property_info_base;
+ struct action_info;
+ }
+
+ typedef std::set<std::string> category_collection;
+ typedef std::list<property_group*> children_collection;
+ typedef std::map<std::string, detail::property_info_base*> property_collection;
+ typedef std::map<std::string, detail::action_info*> action_collection;
+}}
+
+#endif // include guard


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk