poco/Foundation/include/Poco/NamedEvent_WIN32U.h

47 lines
765 B
C
Raw Normal View History

2012-04-29 20:52:25 +02:00
//
// NamedEvent_WIN32U.h
//
// Library: Foundation
// Package: Processes
// Module: NamedEvent
//
// Definition of the NamedEventImpl class for Windows.
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
2012-04-29 20:52:25 +02:00
//
#ifndef Foundation_NamedEvent_WIN32U_INCLUDED
#define Foundation_NamedEvent_WIN32U_INCLUDED
#include "Poco/Foundation.h"
#include "Poco/UnWindows.h"
namespace Poco {
class Foundation_API NamedEventImpl
{
protected:
2022-07-07 11:18:20 +02:00
NamedEventImpl(const std::string& name);
2012-04-29 20:52:25 +02:00
~NamedEventImpl();
void setImpl();
void waitImpl();
2022-07-07 11:18:20 +02:00
2012-04-29 20:52:25 +02:00
private:
std::string _name;
std::wstring _uname;
2022-07-07 11:18:20 +02:00
HANDLE _event;
2012-04-29 20:52:25 +02:00
};
} // namespace Poco
#endif // Foundation_NamedEvent_WIN32U_INCLUDED