doxygen support
git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@418 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
parent
1ffc68af4c
commit
1175f7886b
4 changed files with 36 additions and 0 deletions
12
tools/doxyfilter.pl
Executable file
12
tools/doxyfilter.pl
Executable file
|
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env perl
|
||||
# $Id$
|
||||
|
||||
open(IN, "<", $ARGV[0]);
|
||||
while(my $l = <IN>){
|
||||
$l =~ s/\r?\n$//g;
|
||||
$l =~ s/%([^ ]+)/@\1/g;
|
||||
if(!($l =~ /\@prop /)){
|
||||
print("$l\n");
|
||||
}
|
||||
}
|
||||
close(IN);
|
||||
Loading…
Add table
Add a link
Reference in a new issue