#ifndef __FaceCache_H__ #define __FaceCache_H__ #include class FaceCache { public: FaceCache() { } // returns count of face int cachePm(const PipeMaterial& pm) { return 0; } bool getFaceListPb(uint8_t* buffer, size_t& buffSize) { return false; } bool getFaceListImage(int* buffIdx, size_t& count, uint8_t* buffImg, size_t& buffImgSize) { return false; } }; #endif