構造体内の構造ベクトルに値を代入しようとしています コード例を以下に示します
struct Command
{
string channel;
string channelDescriptor;
};
struct Frame
{
string id;
std::vector<Command> comm;
};
そのため、1 つのフレームにさまざまなコマンドを割り当てようとしています。
私が今持っているものは次のとおりです。
Frame mFrame;
mFrame.comm.push_back(Command({"testing","testing2"}));;