Revision: 1085
http://pygccxml.svn.sourceforge.net/pygccxml/?rev=1085&view=rev
Author: roman_yakovenko
Date: 2007-07-28 10:46:02 -0700 (Sat, 28 Jul 2007)
Log Message:
-----------
adding new test case
Modified Paths:
--------------
pyplusplus_dev/unittests/data/split_module_to_be_exported.hpp
Modified: pyplusplus_dev/unittests/data/split_module_to_be_exported.hpp
===================================================================
--- pyplusplus_dev/unittests/data/split_module_to_be_exported.hpp 2007-07-09 06:03:16 UTC (rev 1084)
+++ pyplusplus_dev/unittests/data/split_module_to_be_exported.hpp 2007-07-28 17:46:02 UTC (rev 1085)
@@ -6,6 +6,11 @@
#ifndef __split_module_to_be_exported_hpp__
#define __split_module_to_be_exported_hpp__
+#include "boost/shared_ptr.hpp"
+//#include BOOST_HASH_MAP_HEADER
+#include <map>
+#include <string>
+
namespace split_module{
struct op_struct{};
@@ -37,7 +42,14 @@
struct nested_t{};
};
+
+//typedef BOOST_STD_EXTENSION_NAMESPACE::hash_map< std::string, boost::shared_ptr< item_t > > str2item_t;
+typedef std::map< std::string, boost::shared_ptr< item_t > > str2item_t;
+inline str2item_t create_empty_mapping(){
+ return str2item_t();
}
+}
+
#endif//__split_module_to_be_exported_hpp__
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|