mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-14 02:57:45 +01:00
45 lines
678 B
C++
45 lines
678 B
C++
//
|
|
// NamedEvent_Android.cpp
|
|
//
|
|
// Library: Foundation
|
|
// Package: Processes
|
|
// Module: NamedEvent
|
|
//
|
|
// Copyright (c) 2004-2011, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "Poco/NamedEvent_Android.h"
|
|
#include "Poco/Exception.h"
|
|
|
|
|
|
namespace Poco {
|
|
|
|
|
|
NamedEventImpl::NamedEventImpl(const std::string&)
|
|
{
|
|
}
|
|
|
|
|
|
NamedEventImpl::~NamedEventImpl()
|
|
{
|
|
}
|
|
|
|
|
|
void NamedEventImpl::setImpl()
|
|
{
|
|
throw NotImplementedException("NamedEvent::set() not available on Android");
|
|
}
|
|
|
|
|
|
void NamedEventImpl::waitImpl()
|
|
{
|
|
throw NotImplementedException("NamedEvent::wait() not available on Android");
|
|
}
|
|
|
|
|
|
} // namespace Poco
|