2023-02-08 11:04:11 +00:00
|
|
|
//
|
|
|
|
// NamedEvent_Android.h
|
|
|
|
//
|
|
|
|
// Library: Foundation
|
|
|
|
// Package: Processes
|
|
|
|
// Module: NamedEvent
|
|
|
|
//
|
|
|
|
// Definition of the NamedEventImpl class for Android.
|
|
|
|
//
|
|
|
|
// Copyright (c) 2004-2011, Applied Informatics Software Engineering GmbH.
|
|
|
|
// and Contributors.
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef Foundation_NamedEvent_Android_INCLUDED
|
|
|
|
#define Foundation_NamedEvent_Android_INCLUDED
|
|
|
|
|
|
|
|
|
|
|
|
#include "Poco/Foundation.h"
|
|
|
|
|
|
|
|
|
2023-02-13 09:22:33 +00:00
|
|
|
namespace Poco
|
|
|
|
{
|
2023-02-08 11:04:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Foundation_API NamedEventImpl
|
|
|
|
{
|
|
|
|
protected:
|
2023-02-13 09:22:33 +00:00
|
|
|
NamedEventImpl(const std::string & name);
|
|
|
|
~NamedEventImpl();
|
|
|
|
void setImpl();
|
|
|
|
void waitImpl();
|
2023-02-08 11:04:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace Poco
|
|
|
|
|
|
|
|
|
|
|
|
#endif // Foundation_NamedEvent_Android_INCLUDED
|