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

📄 gen_function_n.pl

📁 CGAL is a collaborative effort of several sites in Europe and Israel. The goal is to make the most i
💻 PL
字号:
#!/usr/bin/perl -w## Boost.Function library## Copyright Douglas Gregor 2001-2003. Use, modification and# distribution is subject to the Boost Software License, Version# 1.0. (See accompanying file LICENSE_1_0.txt or copy at# http://www.boost.org/LICENSE_1_0.txt)## For more information, see http://www.boost.orguse English;if ($#ARGV < 0) {  print "Usage: perl gen_function_N <number of arguments>\n";  exit;}$totalNumArgs = $ARGV[0];for ($numArgs = 0; $numArgs <= $totalNumArgs; ++$numArgs) {  open OUT, ">function$numArgs.hpp";  print OUT "#define BOOST_FUNCTION_NUM_ARGS $numArgs\n";  print OUT "#include <boost/function/detail/maybe_include.hpp>\n";  print OUT "#undef BOOST_FUNCTION_NUM_ARGS\n";  close OUT;}

⌨️ 快捷键说明

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