1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-14 11:47:15 +01:00
SqMod/vendor/POCO/Foundation/testsuite/src/DummyDelegate.h

29 lines
470 B
C
Raw Normal View History

//
// DummyDelegate.h
//
// Definition of DummyDelegate class.
//
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
//
#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