mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
16 lines
278 B
C++
16 lines
278 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
|
|
{
|
|
namespace Crypt
|
|
{
|
|
class CCryptBase;
|
|
CCryptBase* create_crypt_engine( TCryptInfo& infoCrypt );
|
|
}
|
|
}
|
|
#endif
|