21 lines
404 B
C++
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;
|
|
};
|
|
}
|
|
|