Salome HOME
Updated copyright comment
[modules/yacs.git] / src / wrappergen / src / parse1.awk
1 # Copyright (C) 2006-2024  CEA, EDF
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License, or (at your option) any later version.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19
20 # This awk program extract public functions of the class definition present in hxx interface
21
22 BEGIN { public=0 }
23
24 # we want to extract each function that is public and that does'nt contain
25 # the patterns : public, protected, private, // (comments), { and }
26 public == 1     && 
27 $1 !~ /public/  && 
28 $1 !~ /protected/ && 
29 $1 !~ /private/ && 
30 $1 !~ /\/\/*/   && 
31 $1 !~ /{|}/  {
32    for (i=1; i<=NF; i++)
33       printf "%s ", $i
34 #  change line if last field contains ";" -> one function per line in output
35    if ( $NF ~ /;/ ) 
36       printf "\n"
37 }
38    
39 $1 == "class" && $0 !~ /;/ {public=1} # we test matching against /;/  to get rid of forward declaration
40 $1 ~ /public/ {public=1}
41 $1 ~ /protected/ {public=0}
42 $1 ~ /private/ {public=0}
43 $1 ~ /}/      {public=0}