completed loading adaption .

This commit is contained in:
Zero Fanker 2024-04-03 23:03:05 -04:00
parent 34c78179f1
commit ca20863dc1
6 changed files with 514 additions and 1880 deletions

View file

@ -28,4 +28,14 @@ public:
}
return def;
}
template<typename T>
static CString ToString(const T& origin);// { static_assert(false, "T must have specialized implementations!"); }
template<>
static CString ToString<bool>(const bool& origin)
{
static CString result[] = { "false", "true" };
return result[origin];
}
};