Files
solver/MbDCode/ASMTItem.h
2023-07-16 22:00:07 -06:00

21 lines
404 B
C++

#pragma once
#include "CREATE.h"
namespace MbD {
class ASMTItem
{
//
public:
virtual void initialize();
virtual void parseASMT(std::vector<std::string>& lines);
FRowDsptr readRowOfDoubles(std::string line);
FColDsptr readColumnOfDoubles(std::string line);
double readDouble(std::string line);
int readInt(std::string line);
bool readBool(std::string line);
ASMTItem* owner;
};
}