mirror of
https://github.com/pocoproject/poco.git
synced 2025-11-26 17:13:42 +01:00
29 lines
470 B
C++
29 lines
470 B
C++
//
|
|
// 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
|