mirror of
https://github.com/pocoproject/poco.git
synced 2025-12-08 03:57:21 +01:00
enh(Foundation): modernised header files (override, using, nullptr, ...)
This commit is contained in:
@@ -30,10 +30,10 @@ class Foundation_API PipeImpl: public RefCountedObject
|
||||
/// that do not support pipes.
|
||||
{
|
||||
public:
|
||||
typedef int Handle;
|
||||
using Handle = int;
|
||||
|
||||
PipeImpl();
|
||||
~PipeImpl();
|
||||
~PipeImpl() override;
|
||||
int writeBytes(const void* buffer, int length);
|
||||
int readBytes(void* buffer, int length);
|
||||
Handle readHandle() const;
|
||||
|
||||
Reference in New Issue
Block a user