CONFIG LIB 1.5
Configuration Files Library (by TGG 2020)
Loading...
Searching...
No Matches
czy_file.h
1/*********************************************************************/
2/* */
3/* Config files library - (C) TGG 2018 */
4/* */
5/*********************************************************************/
6/* Warszawa, 2018 */
7/*********************************************************************/
8/* */
9/* File: czy_file.h */
10/* */
11/* Author: T.Grabowski */
12/* */
13/* Contents - spanwise distribution output file class declaration */
14/* */
15/* */
16/*********************************************************************/
17/* */
18/* */
19
20#ifndef _CZY_FILE_H_
21#define _CZY_FILE_H_
22
23#include "txt_out_file.h"
24
26
51class CZY_FILE : public TXT_OUT_FILE
52{
53 public:
54
55 CZY_FILE( void );
56 ~CZY_FILE( void );
57
59 void Clean( void );
60};
61
62#endif /*_CZY_FILE_H_*/
Spanwise distribution output file of Press program: aerodynamic coefficients, reference values,...
Definition czy_file.h:52
void Clean(void)
cleans local variables
Definition czy_file.cpp:26
General output text file.