dbase.h

来自「TGFF省城程序」· C头文件 代码 · 共 40 行

H
40
字号
// Copyright 2000 by Keith Vallerio, David Rhodes, and Robert Dick.// All rights reserved.#ifndef D_BASE_H_#define D_BASE_H_/*###########################################################################*/#include "RString.h"#include "RecVector.h"#include "RVector.h"//#include <cstddef>//#include <iosfwd>#include <string>/*###########################################################################*/class DBase {public:	DBase(int table_offset, int type_cnt);	void print_to(std::ostream & os, const std::string & table_label) const;	void trans_print_to(std::ostream &os, const std::string & table_label)const;private:		int type_cnt_;		int table_offset_;// PE, attribute		rstd::RecVector2<double> table_;// PE, type, attribute, different implementations		rstd::RecVector3<rstd::RVector<double> > table_type_;		const rstd::RVector<std::string> & table_name_;		const rstd::RVector<std::string> & type_name_;		std::size_t f_width_;};/*###########################################################################*/#endif

⌨️ 快捷键说明

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