Add CStateMachine, mostly matched, constructor needs work

Former-commit-id: 06464964dd
This commit is contained in:
2022-10-22 21:49:41 -07:00
parent 920b8b3e56
commit 8173a671c2
7 changed files with 300 additions and 3 deletions

View File

@@ -64,6 +64,11 @@ template <>
inline bool cinput_stream_helper(const TType< bool >& type, CInputStream& in) {
return in.ReadBool();
}
template <>
inline char cinput_stream_helper(const TType< char >& type, CInputStream& in) {
return in.ReadChar();
}
template <>
inline int cinput_stream_helper(const TType< int >& type, CInputStream& in) {
return in.ReadLong();