libcyberradio 22.01.24
WbddcComponent.h
1/***************************************************************************
2 * \file WbddcComponent.h
3 * \brief Defines the WBDDC interface for the NDR651.
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_NDR651_WBDDCCOMPONENT_H
12#define INCLUDED_LIBCYBERRADIO_DRIVER_NDR651_WBDDCCOMPONENT_H
13
14#include "LibCyberRadio/Driver/WbddcComponent.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 NDR651
36 {
37
51 {
52 public:
66 WbddcComponent(int index = 1,
68 bool debug = false,
69 int dataPort = 1,
70 int rateIndex = 0,
71 int udpDestination = 0,
72 int vitaEnable = 0,
73 int streamId = 0);
77 virtual ~WbddcComponent();
82 WbddcComponent(const WbddcComponent& other);
88 virtual WbddcComponent& operator=(const WbddcComponent& other);
89
90 }; // class WbddcComponent
91
92 } /* namespace NDR651 */
93
94 } // namespace Driver
95
96} // namespace LibCyberRadio
97
98
99#endif // INCLUDED_LIBCYBERRADIO_DRIVER_NDR651_WBDDCCOMPONENT_H
virtual int debug(const char *format,...)
Outputs debug information.
virtual WbddcComponent & operator=(const WbddcComponent &other)
Assignment operator for WbddcComponent objects.
WbddcComponent(int index=1, ::LibCyberRadio::Driver::RadioHandler *parent=NULL, bool debug=false, int dataPort=1, int rateIndex=0, int udpDestination=0, int vitaEnable=0, int streamId=0)
Constructs a WbddcComponent object.
virtual ~WbddcComponent()
Destroys a WbddcComponent object.
Generic radio handler class.
Base WBDDC component class.
Provides programming elements for driving NDR651 radios.
Provides programming elements for driving CRS NDR-class radios.
Defines functionality for LibCyberRadio applications.
Definition App.h:24