This repository has been archived on 2024-07-30. You can view files and clone it, but cannot push or open issues or pull requests.
XbeeMav/include/XBeeParameter.h

18 lines
508 B
C++

/* XBee_Parameter.h -- Xbee command struct -- */
/* ------------------------------------------------------------------------- */
/* November 30, 2016 -- @Copyright Aymen Soussia. All rights reserved. */
/* (aymen.soussia@gmail.com) */
#pragma once
#include<string>
//*****************************************************************************
struct XBee_Parameter_S
{
std::string command_;
std::string value_;
};