mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-10-31 15:07:12 -04:00
class vs struct mismatch fixes
This commit is contained in:
parent
8ed4abcd2e
commit
34bdfbf495
@ -12,8 +12,9 @@
|
|||||||
|
|
||||||
namespace qtwebapp {
|
namespace qtwebapp {
|
||||||
|
|
||||||
struct HttpDocrootSettings
|
class HttpDocrootSettings
|
||||||
{
|
{
|
||||||
|
public:
|
||||||
QString path;
|
QString path;
|
||||||
QString encoding;
|
QString encoding;
|
||||||
int maxAge;
|
int maxAge;
|
||||||
|
@ -10,8 +10,9 @@
|
|||||||
|
|
||||||
namespace qtwebapp {
|
namespace qtwebapp {
|
||||||
|
|
||||||
struct HttpListenerSettings
|
class HttpListenerSettings
|
||||||
{
|
{
|
||||||
|
public:
|
||||||
QString host;
|
QString host;
|
||||||
int port;
|
int port;
|
||||||
int minThreads;
|
int minThreads;
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
#include <QString>
|
#include <QString>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
struct Serializable;
|
class Serializable;
|
||||||
|
|
||||||
struct ATVDemodSettings
|
struct ATVDemodSettings
|
||||||
{
|
{
|
||||||
|
@ -21,8 +21,9 @@
|
|||||||
#include <QString>
|
#include <QString>
|
||||||
#include <QByteArray>
|
#include <QByteArray>
|
||||||
|
|
||||||
struct CWKeyerSettings
|
class CWKeyerSettings
|
||||||
{
|
{
|
||||||
|
public:
|
||||||
typedef enum
|
typedef enum
|
||||||
{
|
{
|
||||||
CWNone,
|
CWNone,
|
||||||
|
Loading…
Reference in New Issue
Block a user