Revision: 447
Author: allenb
Date: 2006-08-23 12:39:22 -0700 (Wed, 23 Aug 2006)
ViewCVS: http://svn.sourceforge.net/pygccxml/?rev=447&view=rev
Log Message:
-----------
Bring back code to bring matchers into our namespace.
Modified Paths:
--------------
pyplusplus_dev/contrib/goodies/dsl_interface.py
Modified: pyplusplus_dev/contrib/goodies/dsl_interface.py
===================================================================
--- pyplusplus_dev/contrib/goodies/dsl_interface.py 2006-08-23 19:36:58 UTC (rev 446)
+++ pyplusplus_dev/contrib/goodies/dsl_interface.py 2006-08-23 19:39:22 UTC (rev 447)
@@ -22,3 +22,12 @@
# Type traits
+
+# Matchers
+# - Bring in all matchers but rename then without the '_t' at the end
+import pygccxml.declarations.matchers
+for n in ["matcher_base_t","or_matcher_t","and_matcher_t","not_matcher_t",
+ "declaration_matcher_t","calldef_matcher_t","namespace_matcher_t",
+ "variable_matcher_t","regex_matcher_t","access_type_matcher_t",
+ "operator_matcher_t","custom_matcher_t","virtuality_type_matcher_t"]:
+ mod_dict[n[:-2]] = pygccxml.declarations.matchers.__dict__[n]
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|