mirror of
https://github.com/pocoproject/poco.git
synced 2025-01-09 11:17:31 +01:00
19 lines
319 B
C
19 lines
319 B
C
|
//
|
||
|
// DummyDelegate.h
|
||
|
//
|
||
|
|
||
|
#ifndef DummyDelegate_INCLUDED
|
||
|
#define DummyDelegate_INCLUDED
|
||
|
|
||
|
class DummyDelegate
|
||
|
{
|
||
|
public:
|
||
|
DummyDelegate ();
|
||
|
virtual ~DummyDelegate ();
|
||
|
|
||
|
void onSimple ( const void* pSender, int& i );
|
||
|
void onSimple2 ( const void* pSender, int& i );
|
||
|
};
|
||
|
|
||
|
#endif // DummyDelegate_INCLUDED
|