19 lines
377 B
C++
19 lines
377 B
C++
|
/*
|
||
|
* Copyright (C) 2024 Intel Corporation. All rights reserved.
|
||
|
* Authors:
|
||
|
* Gustavo A Espinoza <gustavo.adolfo.espinoza.quintero@intel.com>
|
||
|
* <gustavoaespinozaq@hotmail.com>
|
||
|
*
|
||
|
* For conditions of distribution and use, see copyright notice in zlib.h
|
||
|
*/
|
||
|
#ifndef QATZPP_QAT_HPP
|
||
|
#define QATZPP_QAT_HPP
|
||
|
|
||
|
namespace qat
|
||
|
{
|
||
|
|
||
|
int Initialize();
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|