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

http://github.com/tybor/Liberty · Specman e · 30 lines · 11 code · 5 blank · 14 comment · 0 complexity · db251ce8bfde500430d2fc4a5efaafa2 MD5 · raw file

  1. deferred class WRAPPABLE_NODE
  2. -- A node of an XML file made by GccXml representing an entity that may be wrapped in Liberty Eiffel either as a feature, as a class or a cluster.
  3. inherit
  4. NAMED_NODE
  5. insert
  6. NAME_CONVERTER
  7. feature {ANY} -- Emittability
  8. is_to_be_emitted: BOOLEAN
  9. -- Shall Current node be wrapped?
  10. deferred
  11. end
  12. emitted: BOOLEAN
  13. -- Has Current node been already been wrapped?
  14. end -- class WRAPPABLE_NODE
  15. -- Copyright (C) 2008-2017: ,2009,2010 Paolo Redaelli
  16. -- wrappers-generator is free software: you can redistribute it and/or modify it
  17. -- under the terms of the GNU General Public License as publhed by the Free
  18. -- Software Foundation, either version 2 of the License, or (at your option)
  19. -- any later version.
  20. -- wrappers-generator is distributed in the hope that it will be useful, but
  21. -- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  22. -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  23. -- more details.
  24. -- You should have received a copy of the GNU General Public License along with
  25. -- th program. If not, see <http://www.gnu.org/licenses/>.