asc26 amss-ncku initialized

This commit is contained in:
2026-01-13 15:01:15 +08:00
commit f2fc9af70e
272 changed files with 262274 additions and 0 deletions

26
AMSS_NCKU_source/var.h Normal file
View File

@@ -0,0 +1,26 @@
#ifndef VAR_H
#define VAR_H
class var
{
public:
char name[20];
int sgfn;
double SoA[3];
double propspeed;
public:
var(const char *namei, int sgfni,
const double SYM1, const double SYM2, const double SYM3);
// original interface:
// var(char *namei, int sgfni,
// const double SYM1, const double SYM2, const double SYM3);
~var();
void setpropspeed(const double vl);
};
#endif /* VAR_H */