poco-doc.pl.svn-base

来自「很好用的网络封装库,不熟悉网络编程的人也可以使用。使用风格良好的标准c++编写。」· SVN-BASE 代码 · 共 48 行

SVN-BASE
48
字号
#!/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 <caleb.epstein@gmail.com>
#
# $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;
   }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?