FlightGear next
dds_props.hxx
Go to the documentation of this file.
1// dds_props.hxx -- FGFS "DDS" properties protocal class
2//
3// Written by Erik Hofman, started April 2021
4//
5// Copyright (C) 2021 by Erik Hofman <erik@ehofman.com>
6//
7// This program is free software; you can redistribute it and/or
8// modify it under the terms of the GNU General Public License as
9// published by the Free Software Foundation; either version 2 of the
10// License, or (at your option) any later version.
11//
12// This program is distributed in the hope that it will be useful, but
13// WITHOUT ANY WARRANTY; without even the implied warranty of
14// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15// General Public License for more details.
16//
17// You should have received a copy of the GNU General Public License
18// along with this program; if not, write to the Free Software
19// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20//
21// $Id$
22
23
24#pragma once
25
26#include <string>
27#include <map>
28
29#include <simgear/compiler.h>
30
31#include <simgear/props/propsfwd.hxx>
32
33#include "protocol.hxx"
34#include "DDS/dds_props.h"
35
36
37class FGDDSProps : public FGProtocol {
38
39 FG_DDS_prop prop;
40
41 simgear::PropertyList prop_list;
42 std::map<std::string,uint32_t> path_list;
43
44 static void setProp(FG_DDS_prop&, SGPropertyNode_ptr, std::string &);
45
46public:
47
48 FGDDSProps() = default;
49 ~FGDDSProps() = default;
50
51 // open hailing frequencies
52 bool open();
53
54 // process work for this port
55 bool process();
56
57 // close the channel
58 bool close();
59};
bool open()
Definition dds_props.cxx:41
~FGDDSProps()=default
bool process()
Definition dds_props.cxx:65
FGDDSProps()=default
bool close()