-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
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
Pavel Kraynyukhov
committed
Jul 11, 2018
1 parent
bf35500
commit cae3e57
Showing
2 changed files
with
34 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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__ */ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters