/src/tools/wrappers-generator/storable_node.e
Specman e | 29 lines | 10 code | 4 blank | 15 comment | 0 complexity | 88e6857e340c74a6e3371e2cb30b1ccb MD5 | raw file
1deferred 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 6inherit 7 FILED_NODE 8 9insert 10 SHARED_COLLECTIONS 11 12feature {ANY} 13 store 14 -- Store current into the proper collection 15 deferred 16 end 17 18end -- class STORABLE_NODE 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/>.