mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
16 lines
573 B
C++
16 lines
573 B
C++
|
//===========================================================================//
|
||
|
//
|
||
|
// Purpose: implementation of the CNetKey class.
|
||
|
// --------------------------------------------------------------------------
|
||
|
//===========================================================================//
|
||
|
#include "core/stdafx.h"
|
||
|
#include "NetKey.h"
|
||
|
|
||
|
//////////////////////////////////////////////////////////////////////
|
||
|
// Get key as Base64.
|
||
|
//////////////////////////////////////////////////////////////////////
|
||
|
const char* CNetKey::GetBase64NetKey(void) const
|
||
|
{
|
||
|
return m_szBase64;
|
||
|
}
|