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

http://github.com/tybor/Liberty · Specman e · 29 lines · 10 code · 4 blank · 15 comment · 0 complexity · 88e6857e340c74a6e3371e2cb30b1ccb MD5 · raw file

  1. deferred class STORABLE_NODE
  2. -- A node in an XML file generated by gccxml that is meant to be stored
  3. -- into a shared collection for later processing, i.e. generating a wrapper
  4. -- or an anchored declaration.
  5. inherit
  6. FILED_NODE
  7. insert
  8. SHARED_COLLECTIONS
  9. feature {ANY}
  10. store
  11. -- Store current into the proper collection
  12. deferred
  13. end
  14. end -- class STORABLE_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/>.