You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
310 B
C
20 lines
310 B
C
|
2 years ago
|
#pragma once
|
||
|
|
|
||
|
|
#include <string>
|
||
|
|
|
||
|
|
#include "nlohmann/json.hpp"
|
||
|
|
|
||
|
|
namespace nsRUNCTRL
|
||
|
|
{
|
||
|
|
using stRunEolState = struct _stRunEolState
|
||
|
|
{
|
||
|
|
std::string strName;
|
||
|
|
int bEol{ true };
|
||
|
|
};
|
||
|
|
|
||
|
|
NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE(
|
||
|
|
stRunEolState,
|
||
|
|
strName,
|
||
|
|
bEol
|
||
|
|
)
|
||
|
|
}
|