source: ntrip/trunk/BNC/src/upload/bncrawuploadcaster.h@ 10753

Last change on this file since 10753 was 10753, checked in by stuerze, 4 weeks ago

NtripSever functionallity added

File size: 583 bytes
Line 
1/*
2 * bncrawuploadcaster.h
3 *
4 * Created on: Aug 26, 2025
5 * Author: stuerze
6 */
7
8#ifndef SRC_UPLOAD_BNCRAWUPLOADCASTER_H_
9#define SRC_UPLOAD_BNCRAWUPLOADCASTER_H_
10
11#include "bncuploadcaster.h"
12#include "bncsettings.h"
13
14class bncRawUploadCaster : public QObject {
15 Q_OBJECT
16 public:
17 bncRawUploadCaster();
18 virtual ~bncRawUploadCaster();
19 signals:
20 void newBytes(QByteArray staID, double nbyte);
21 public slots:
22 void slotNewRawData(QByteArray staID, QByteArray data);
23 private:
24 QMap<QString, bncUploadCaster*> _casters;
25};
26
27#endif /* SRC_UPLOAD_BNCRAWUPLOADCASTER_H_ */
Note: See TracBrowser for help on using the repository browser.