27 lines
517 B
C++
27 lines
517 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
|
|
{
|
|
|
|
|
|
class NIS
|
|
{
|
|
|
|
private:
|
|
Whisper::Network::Protocols::Announcement announcementProtocol_;
|
|
|
|
}; // NIS
|
|
|
|
|
|
|
|
}; // namespace Whisper
|