17 lines
270 B
C++
17 lines
270 B
C++
#pragma once
|
|
|
|
#include "ASMTItem.h"
|
|
|
|
namespace MbD {
|
|
class ASMTSimulationParameters : public ASMTItem
|
|
{
|
|
//
|
|
public:
|
|
void parseASMT(std::vector<std::string>& lines) override;
|
|
|
|
double tstart, tend, hmin, hmax, hout, errorTol;
|
|
|
|
};
|
|
}
|
|
|