| 1 | // |
| 2 | // DummyDelegate.h |
| 3 | // |
| 4 | // Definition of DummyDelegate class. |
| 5 | // |
| 6 | // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. |
| 7 | // and Contributors. |
| 8 | // |
| 9 | // SPDX-License-Identifier: BSL-1.0 |
| 10 | // |
| 11 | |
| 12 | |
| 13 | #ifndef DummyDelegate_INCLUDED |
| 14 | #define DummyDelegate_INCLUDED |
| 15 | |
| 16 | |
| 17 | class DummyDelegate |
| 18 | { |
| 19 | public: |
| 20 | DummyDelegate(); |
| 21 | virtual ~DummyDelegate(); |
| 22 | |
| 23 | void onSimple(const void* pSender, int& i); |
| 24 | void onSimple2(const void* pSender, int& i); |
| 25 | }; |
| 26 | |
| 27 | |
| 28 | #endif // DummyDelegate_INCLUDED |
| 29 | |