Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
moving nonce singleton declaration to a separate file
Browse files Browse the repository at this point in the history
Pavel Kraynyukhov committed Jul 11, 2018

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
1 parent bf35500 commit cae3e57
Showing 2 changed files with 34 additions and 2 deletions.
33 changes: 33 additions & 0 deletions include/Nonce.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
/**
* Copyright 2017-2018, Pavel Kraynyukhov <pavel.kraynyukhov@gmail.com>
*
* This file is a part of LAppS (Lua Application Server).
*
* LAppS is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* LAppS is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with LAppS. If not, see <http://www.gnu.org/licenses/>.
*
* $Id: Nonce.h July 11, 2018 1:48 PM $
*
**/


#ifndef __NONCE_H__
# define __NONCE_H__

#include <Singleton.h>
#include <Sequence.h>

typedef itc::Singleton<itc::Sequence<uint64_t,true>> InstanceIdNonce;

#endif /* __NONCE_H__ */

3 changes: 1 addition & 2 deletions include/abstract/Application.h
Original file line number Diff line number Diff line change
@@ -37,8 +37,7 @@
#include <abstract/WebSocket.h>
#include <Sequence.h>
#include <Singleton.h>

typedef itc::Singleton<itc::Sequence<uint64_t,true>> InstanceIdNonce;
#include <Nonce.h>

namespace abstract
{

0 comments on commit cae3e57

Please sign in to comment.