ExternalSystem class

This commit is contained in:
Aik-Siong Koh
2023-07-19 09:41:17 -06:00
parent 80bb812075
commit 225966dced
35 changed files with 1069 additions and 532 deletions

View File

@@ -0,0 +1,31 @@
#include "ExternalSystem.h"
using namespace MbD;
void MbD::ExternalSystem::preMbDrun()
{
}
void MbD::ExternalSystem::outputFor(AnalysisType type)
{
}
void MbD::ExternalSystem::logString(std::string& str)
{
}
void MbD::ExternalSystem::logString(double value)
{
}
void MbD::ExternalSystem::runOndselPiston()
{
}
void MbD::ExternalSystem::runPiston()
{
}
void MbD::ExternalSystem::postMbDrun()
{
}