⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 poco-doc.pl.svn-base

📁 很好用的网络封装库,不熟悉网络编程的人也可以使用。使用风格良好的标准c++编写。
💻 SVN-BASE
字号:
#!/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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -