/src/tools/wrappers-generator/c_constructor.e

http://github.com/tybor/Liberty · Specman e · 36 lines · 17 code · 7 blank · 12 comment · 0 complexity · 92ff3633c676d4fb8a2b4c85b179901c MD5 · raw file

  1. class C_CONSTRUCTOR
  2. -- A "Constructor" node in an XML file made by gccxml.
  3. inherit
  4. GCCXML_NODE
  5. NAMED_NODE
  6. TYPED_NODE
  7. FILED_NODE
  8. create {GCCXML_TREE}
  9. make
  10. feature {ANY}
  11. is_fundamental: BOOLEAN False
  12. is_void: BOOLEAN False
  13. has_wrapper: BOOLEAN False
  14. wrapper_type: STRING
  15. do
  16. not_yet_implemented
  17. end -- invariant name.is_equal(once U"Constructor")
  18. end -- class C_CONSTRUCTOR
  19. -- Copyright (C) 2008-2017: ,2009,2010 Paolo Redaelli
  20. -- wrappers-generator is free software: you can redistribute it and/or modify it
  21. -- under the terms of the GNU General Public License as publhed by the Free
  22. -- Software Foundation, either version 2 of the License, or (at your option)
  23. -- any later version.
  24. -- wrappers-generator is distributed in the hope that it will be useful, but
  25. -- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  26. -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  27. -- more details.
  28. -- You should have received a copy of the GNU General Public License along with
  29. -- th program. If not, see <http://www.gnu.org/licenses/>.