File size: 578 Bytes
92264aa 134b4c4 92264aa 134b4c4 92264aa 134b4c4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | /**************************************************************************************************
* ZipVoice C++ — Unified EngineWrapper implementation (AXERA & AXCL)
*
* Conditionally includes the platform-specific implementation.
**************************************************************************************************/
#if defined(AX650) || defined(AX630C) || defined(AX620Q)
#include "EngineWrapper_axera.cpp"
#elif defined(AXCL)
#include "EngineWrapper_axcl.cpp"
#else
#error "Unknown platform. Define AX650, AX630C, AX620Q, or AXCL."
#endif
|