This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <pre/json/from_json.hpp> | |
struct tool { | |
std::string url; | |
std::string sha1; | |
std::string root; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* \brief Allows iteration on member name and values of a Fusion adapted struct. | |
* | |
* | |
* BOOST_FUSION_ADAPT_STRUCT(ns::point, | |
* (int, x) | |
* (int, y) | |
* (int, z)); | |
* | |
* template<class T> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: python/genreflex/gendict.py | |
=================================================================== | |
--- python/genreflex/gendict.py (revision 37933) | |
+++ python/genreflex/gendict.py (working copy) | |
@@ -691,9 +691,9 @@ | |
#----Filter any non-public data members for minimal interpreter dict ----- | |
if self.interpreter and elem in ('Field') and 'access' in attrs : # assumes that the default is "public" | |
return 0 | |
- #----Filter any non public method | |
+ #----Filter any non public Constructor, Desctructor or Converter |