libcyberradio 22.01.24
NbddcGroupComponent.h
1/***************************************************************************
2 * \file NbddcGroupComponent.h
3 * \brief Defines the NBDDC group interface for the NDR308.
4 * \author DA
5 * \author NH
6 * \author MN
7 * \copyright (c) 2017 CyberRadio Solutions, Inc. All rights reserved.
8 *
9 ***************************************************************************/
10
11#ifndef INCLUDED_LIBCYBERRADIO_DRIVER_NDR308_NBDDCGROUPCOMPONENT_H
12#define INCLUDED_LIBCYBERRADIO_DRIVER_NDR308_NBDDCGROUPCOMPONENT_H
13
14#include "LibCyberRadio/Driver/NbddcGroupComponent.h"
15#include "LibCyberRadio/Common/BasicDict.h"
16#include <string>
17
18
22namespace LibCyberRadio
23{
27 namespace Driver
28 {
29 // Forward declaration for RadioHandler
30 class RadioHandler;
31
35 namespace NDR308
36 {
37
46 {
47 public:
55 NbddcGroupComponent(int index = 1,
57 bool debug = false);
61 virtual ~NbddcGroupComponent();
73
74 }; // class NbddcGroupComponent
75
76 } /* namespace NDR308 */
77
78 } // namespace Driver
79
80} // namespace LibCyberRadio
81
82
83#endif // INCLUDED_LIBCYBERRADIO_DRIVER_NDR308_NBDDCGROUPCOMPONENT_H
virtual int debug(const char *format,...)
Outputs debug information.
NbddcGroupComponent(int index=1, ::LibCyberRadio::Driver::RadioHandler *parent=NULL, bool debug=false)
Constructs a NbddcGroupComponent object.
virtual ~NbddcGroupComponent()
Destroys a NbddcGroupComponent object.
virtual NbddcGroupComponent & operator=(const NbddcGroupComponent &other)
Assignment operator for NbddcGroupComponent objects.
Base NBDDC group component class.
Generic radio handler class.
Provides programming elements for driving NDR308 radios.
Definition DataPort.h:34
Provides programming elements for driving CRS NDR-class radios.
Defines functionality for LibCyberRadio applications.
Definition App.h:24