Open-Transactions  0.93.0-ge03d287
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
OTPseudonym.cpp File Reference
#include "stdafx.hpp"
#include "OTPseudonym.hpp"
#include "crypto/OTCredential.hpp"
#include "util/OTFolders.hpp"
#include "OTLedger.hpp"
#include "OTLog.hpp"
#include "OTMessage.hpp"
#include "crypto/OTPassword.hpp"
#include "crypto/OTPasswordData.hpp"
#include "crypto/OTSignedFile.hpp"
#include "OTStorage.hpp"
#include "crypto/OTSubkey.hpp"
#include "crypto/OTSymmetricKey.hpp"
#include <irrxml/irrXML.hpp>
#include <algorithm>
#include <fstream>
#include <memory>
Include dependency graph for OTPseudonym.cpp:

Go to the source code of this file.

Namespaces

 opentxs
 

Macros

#define CLEAR_MAP_AND_DEQUE(the_map)
 
#define WIPE_MAP_AND_DEQUE(the_map)
 
#define OT_MAX_ACK_NUMS   100
 

Macro Definition Documentation

#define CLEAR_MAP_AND_DEQUE (   the_map)
Value:
for (auto& it : the_map) { \
if ((nullptr != pstrServerID) && (str_ServerID != it.first)) continue; \
dequeOfTransNums* pDeque = (it.second); \
OT_ASSERT(nullptr != pDeque); \
if (!(pDeque->empty())) pDeque->clear(); \
}
std::deque< int64_t > dequeOfTransNums
#define OT_ASSERT(x)
Definition: Assert.hpp:150

Definition at line 1536 of file OTPseudonym.cpp.

#define OT_MAX_ACK_NUMS   100

Definition at line 2601 of file OTPseudonym.cpp.

#define WIPE_MAP_AND_DEQUE (   the_map)
Value:
while (!the_map.empty()) { \
dequeOfTransNums* pDeque = the_map.begin()->second; \
OT_ASSERT(nullptr != pDeque); \
the_map.erase(the_map.begin()); \
delete pDeque; \
pDeque = nullptr; \
}
std::deque< int64_t > dequeOfTransNums
#define OT_ASSERT(x)
Definition: Assert.hpp:150

Definition at line 1846 of file OTPseudonym.cpp.