dbmat.h

来自「Finite element program for mechanical pr」· C头文件 代码 · 共 44 行

H
44
字号
#ifndef DBMAT_H#define DBMAT_H#include <stdio.h>#include "../SRC/alias.h"class matr/**   Material class   Created by Tomas Koudelka, koudelka@cml.fsv.cvut.cz*/{  public :   mattype type; ///< material type number   long nprop;   ///< number of indeces   char **prop;  ///< array of strings with material properties (material indeces)   long *propu;  ///< array indicators of indeces which are used   long *ridx;   ///< array with renumbered used indeces   long npropu;  ///< counter used indeces this material type   matr(void);   ~matr(void);   long read(FILE *in);};class dbmat/**   Material database class   Created by Tomas Koudelka, koudelka@cml.fsv.cvut.cz*/{  public :   long numt;    ///< number of material entries   matr *mat;    ///< array with materials   dbmat(void);   ~dbmat(void);   long search_mat(mattype ce, long ci);};#endif

⌨️ 快捷键说明

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