sgltest1_mainhg.cpp
来自「MATLAB扩展编程by 孙永康.ZIP.有需要的朋友请来下载.」· C++ 代码 · 共 38 行
CPP
38 行
//
// MATLAB Compiler: 2.1
// Date: Fri Oct 26 10:24:04 2001
// Arguments: "-B" "macro_default" "-O" "all" "-O" "fold_scalar_mxarrays:on"
// "-O" "fold_non_scalar_mxarrays:on" "-O" "optimize_integer_for_loops:on" "-O"
// "array_indexing:on" "-O" "optimize_conditionals:on" "-B" "sglcpp" "-p" "-W"
// "main" "-L" "Cpp" "-t" "-T" "link:exe" "-h" "libmmfile.mlib" "-W" "mainhg"
// "libmwsglm.mlib" "sgltest1"
//
#include "matlab.hpp"
#include "libsglinit.hpp"
#include "sgltest1.hpp"
#include "subplot.hpp"
#include "libmmfile.hpp"
#include "libmwsglm.hpp"
static mexFunctionTableEntry function_table[2]
= { { "sgltest1", mlxSgltest1, 1, 0, &_local_function_table_sgltest1 },
{ "subplot", mlxSubplot, 3, 1, &_local_function_table_subplot } };
static _mexcppInitTermTableEntry init_term_table[4]
= { { libmmfileInitialize, libmmfileTerminate },
{ libmwsglmInitialize, libmwsglmTerminate },
{ InitializeModule_sgltest1, TerminateModule_sgltest1 },
{ InitializeModule_subplot, TerminateModule_subplot } };
static _mexcpp_information _main_info
= { 1, 2, function_table, 0, NULL, 0, NULL, 4, init_term_table };
//
// The function "main" is a Compiler-generated main wrapper, suitable for
// building a stand-alone application. It calls a library function to perform
// initialization, call the main function, and perform library termination.
//
int main(int argc, const char * * argv) {
return mwMainhg(argc, argv, mlxSgltest1, 0, &_main_info);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?