mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-09-01 18:01:13 +02:00
22 lines
476 B
C++
22 lines
476 B
C++
//=============================================================================
|
|
// YHTTPD
|
|
// TestHook
|
|
//=============================================================================
|
|
#ifndef TESTHOOK_H_
|
|
#define TESTHOOK_H_
|
|
|
|
|
|
#include <yhook.h>
|
|
class CTesthook : public Cyhook
|
|
{
|
|
public:
|
|
THandleStatus Hook_SendResponse(CyhookHandler *hh);
|
|
CTesthook(){};
|
|
~CTesthook(){};
|
|
|
|
virtual std::string getHookName(void) {return std::string("Testhook");}
|
|
|
|
};
|
|
#endif /*TESTHOOK_H_*/
|
|
|