📄 pfil_cstr_1.cc
字号:
// file: pfil_cstr_1.cc// // isip include files//#include <integral_constants.h>#include "param_file.h"#include "param_file_constants.h"// method: constructor//// arguments: none//// return: none//// this is the default constructor for the Param_file class//Param_file::Param_file() { // printf("Param_file constructor: %u\n", (uint_2)this); // set the class data to defaults // terminator_char_d = (char_1)PFIL_DEF_TERMINATOR_CHAR; assignment_char_d = (char_1)PFIL_DEF_ASSIGNMENT_CHAR; comment_char_d = (char_1)PFIL_DEF_COMMENT_CHAR; // initialize all variables // param_file_d = (char_1*)NULL; magic_string_d = (char_1*)NULL; params_d = (char_1**)NULL; values_d = (char_1**)NULL; num_params_d = 0; parse_statement_format_d = (char_1*)NULL; load_statement_format_d = (char_1*)NULL; debug_level_d = ISIP_DEBUG_NONE; // now build the formats from the other class data // set_parse_string_cc(); // exit gracefully //}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -