FrontISTR  5.7.1
Large-scale structural analysis program with finit element method
CNFDB_100.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * Copyright (c) 2019 FrontISTR Commons
3  * This software is released under the MIT License, see LICENSE.txt
4  *****************************************************************************/
5 /*
6  CNFDB_100 Ver. 3.6
7  -----------------------------
8  100 Header
9 */
10 
11 #ifndef CNFDB_100H
12 #define CNFDB_100H
13 
14 #include "CNFDataBlock.h"
15 
16 // 100 Header
17 class CNFDB_100 : public CNFDataBlock {
18  public:
19  CNFDB_100();
20  virtual ~CNFDB_100() {}
21 
22  virtual void Read(class CNFData* nfd);
23  virtual void WriteData(class CNFData* nfd, FILE* fp);
24 
25  public:
26  // #1
27  nf_char title[256];
28  // #2
30 };
31 
32 #endif
char nf_char
Definition: CNFDataBlock.h:22
double nf_float
Definition: CNFDataBlock.h:21
virtual ~CNFDB_100()
Definition: CNFDB_100.h:20
virtual void WriteData(class CNFData *nfd, FILE *fp)
Definition: CNFDB_100.cpp:31
virtual void Read(class CNFData *nfd)
Definition: CNFDB_100.cpp:21
nf_float version
Definition: CNFDB_100.h:29
nf_char title[256]
Definition: CNFDB_100.h:27