forked from pocoproject/poco
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpoco-doc.pl
47 lines (41 loc) · 1.02 KB
/
poco-doc.pl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/perl -wi
#
# poco-doc.pl
#
# This script, when run on a POCO header file, moves the documentation
# for classes, methods, etc above their declarations, making the code
# suitable for running through Doxygen, etc.
#
# Author: Caleb Epstein <[email protected]>
#
# $Id$
use strict;
use warnings;
my @COMMENT;
my @DECL;
my $comment_re = qr@^\s*//@;
while (<>) {
if ((/^\s*(template|class|enum)/ and not /\;\s*$/) or
(/[\(\)](\s*const)?\;$/ and $_ !~ $comment_re)) {
if (scalar @DECL) {
print join ("", @COMMENT) if scalar @COMMENT;
print join ("", @DECL);
}
@DECL = ($_);
@COMMENT = ();
next;
} elsif (m@^\s*///@ and scalar @DECL) {
push (@COMMENT, $_);
} else {
if (scalar @DECL) {
print join ("", @COMMENT) if scalar @COMMENT;
print join ("", @DECL);
@COMMENT = @DECL = ();
}
# Handle in-line documentation of enum values
if (m@^\s*[^/]@ and m@/// @) {
s@/// @///< @;
}
print;
}
}