| 1 | // |
|---|---|
| 2 | // TestPlugin.h |
| 3 | // |
| 4 | // Definition of the TestPlugin class. |
| 5 | // |
| 6 | // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. |
| 7 | // and Contributors. |
| 8 | // |
| 9 | // SPDX-License-Identifier: BSL-1.0 |
| 10 | // |
| 11 | |
| 12 | |
| 13 | #ifndef TestPlugin_INCLUDED |
| 14 | #define TestPlugin_INCLUDED |
| 15 | |
| 16 | |
| 17 | #include "Poco/Foundation.h" |
| 18 | |
| 19 | |
| 20 | class TestPlugin |
| 21 | { |
| 22 | public: |
| 23 | TestPlugin(); |
| 24 | virtual ~TestPlugin(); |
| 25 | virtual std::string name() const = 0; |
| 26 | }; |
| 27 | |
| 28 | |
| 29 | #endif // TestPlugin_INCLUDED |
| 30 |