diff --git a/inc/hgl/util/csv/CSVOutput.h b/inc/hgl/util/csv/CSVOutput.h index 4e2424c..e75c7ef 100644 --- a/inc/hgl/util/csv/CSVOutput.h +++ b/inc/hgl/util/csv/CSVOutput.h @@ -1,4 +1,4 @@ -#pragma once +#pragma once #include #include @@ -7,7 +7,7 @@ namespace hgl namespace util { /** - * CSV + * CSV输出控制 */ template class CSVOutput { @@ -39,10 +39,10 @@ namespace hgl public: - CSVOutput( io::TextOutputStream *os, //ı - const uint field_count, //ֶ - const T fields_terminated_char=T('\t'), //ֶηָ - const T enclosed_char=T('"')) //ַַ + CSVOutput( io::TextOutputStream *os, //文本输出流 + const uint field_count, //字段数量 + const T fields_terminated_char=T('\t'), //字段分隔符 + const T enclosed_char=T('"')) //字符串包裹字符 { tos=os;