WhisperCom/include/Whisper/Network/Protocol.hpp
2021-08-21 23:48:06 +02:00

35 lines
633 B
C++

#pragma once
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
/** @file */
/** @copyright 2021 MPLv2 */
/**
* @brief This is the main namespace for all whisper-com related datatypes and classed.
*/
namespace Whisper
{
/**
* @brief This namespace is for all network related datatypes and classes.
*/
namespace Network
{
class Protocol
{
protected:
public:
}; // class Protocol
}; // namespace Network
}; // namespace Whisper