From: <rom...@us...> - 2008-04-09 17:09:59
|
Revision: 1307 http://pygccxml.svn.sourceforge.net/pygccxml/?rev=1307&view=rev Author: roman_yakovenko Date: 2008-04-09 10:10:03 -0700 (Wed, 09 Apr 2008) Log Message: ----------- adding private enums Modified Paths: -------------- pygccxml_dev/unittests/data/declarations_enums.hpp Modified: pygccxml_dev/unittests/data/declarations_enums.hpp =================================================================== --- pygccxml_dev/unittests/data/declarations_enums.hpp 2008-04-08 18:34:31 UTC (rev 1306) +++ pygccxml_dev/unittests/data/declarations_enums.hpp 2008-04-09 17:10:03 UTC (rev 1307) @@ -13,6 +13,10 @@ class data{ public: enum EColor{ red, green, blue, black, white }; +private: + enum EPrivColor{ priv_red, priv_green, priv_blue, priv_black, priv_white }; + + void do_smth(EPrivColor x){} }; } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |