r5sdk/r5dev/tier1/NetKey.cpp
Kawe Mazidjatari cc5eda3a7e Tier1: remove unrelevant comment
No mutex locking should take place here after careful research.
2024-06-01 11:25:57 +02:00

15 lines
554 B
C++

//===========================================================================//
//
// Purpose: implementation of the CNetKey class.
// --------------------------------------------------------------------------
//===========================================================================//
#include "tier1/NetKey.h"
//////////////////////////////////////////////////////////////////////
// Get key as Base64.
//////////////////////////////////////////////////////////////////////
const char* CNetKey::GetBase64NetKey(void) const
{
return m_szBase64;
}