1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-02-24 05:37:14 +01:00
SqMod/vendor/POCO/Util/testsuite/src/WinRegistryTest.h

39 lines
604 B
C
Raw Normal View History

//
// WinRegistryTest.h
//
// Definition of the WinRegistryTest class.
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
//
#ifndef WinRegistryTest_INCLUDED
#define WinRegistryTest_INCLUDED
#include "Poco/Util/Util.h"
#include "CppUnit/TestCase.h"
class WinRegistryTest: public CppUnit::TestCase
{
public:
WinRegistryTest(const std::string& name);
~WinRegistryTest();
void testRegistry();
void setUp();
void tearDown();
static CppUnit::Test* suite();
private:
};
#endif // WinRegistryTest_INCLUDED