19 lines
310 B
C
19 lines
310 B
C
|
#pragma once
|
||
|
|
||
|
#include <include/api.h>
|
||
|
#include <QObject>
|
||
|
|
||
|
namespace http {
|
||
|
|
||
|
#define HTTPReceiverInterfaceIID "bigsnitch.api.HTTPReceiverInterface/100"
|
||
|
|
||
|
class ReceiverInterface {
|
||
|
|
||
|
public:
|
||
|
virtual ~ReceiverInterface() = default;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
Q_DECLARE_INTERFACE(http::ReceiverInterface, HTTPReceiverInterfaceIID)
|