polserver/pol-core/pol/crypt/cryptengine.h
2018-01-01 21:52:14 +01:00

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