poco/Foundation/testsuite/src/DummyDelegate.h

19 lines
319 B
C
Raw Normal View History

2006-07-11 18:33:40 +02:00
//
// 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