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