mirror of
https://github.com/QuasarApp/Heart.git
synced 2025-05-09 07:59:45 +00:00
27 lines
413 B
C
27 lines
413 B
C
|
#ifndef BASENODE_H
|
||
|
#define BASENODE_H
|
||
|
|
||
|
#include "abstractnode.h"
|
||
|
|
||
|
namespace ClientProtocol {
|
||
|
|
||
|
/**
|
||
|
* @brief The BaseNode class - base inplementation of nodes
|
||
|
*/
|
||
|
class BaseNode : public AbstractNode
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
|
||
|
/**
|
||
|
* @brief BaseNode
|
||
|
* @param mode
|
||
|
* @param ptr
|
||
|
*/
|
||
|
BaseNode(SslMode mode = SslMode::NoSSL, QObject * ptr = nullptr);
|
||
|
~BaseNode();
|
||
|
};
|
||
|
|
||
|
}
|
||
|
#endif // BASENODE_H
|