polserver/pol-core/pol/crypt/cryptengine.h
turleypol 21577d8e5b
Clang Tidy concat namespaces (#855)
* tidy

* Automated clang-tidy change: modernize-concat-nested-namespaces

* compile test

* fix namespace

---------

Co-authored-by: Clang Tidy <clang-tidy@users.noreply.github.com>
2026-01-17 10:30:21 +01:00

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