mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
* tidy * Automated clang-tidy change: modernize-concat-nested-namespaces * compile test * fix namespace --------- Co-authored-by: Clang Tidy <clang-tidy@users.noreply.github.com>
15 lines
292 B
C++
15 lines
292 B
C++
// History
|
|
// 2006/09/26 Shinigami: GCC 3.4.x fix - added "this" to NewCryptEngineTmpl
|
|
|
|
#ifndef CRYPTENGINE_H
|
|
#define CRYPTENGINE_H
|
|
|
|
#include "cryptkey.h"
|
|
|
|
namespace Pol::Crypt
|
|
{
|
|
class CCryptBase;
|
|
CCryptBase* create_crypt_engine( TCryptInfo& infoCrypt );
|
|
} // namespace Pol::Crypt
|
|
|
|
#endif
|