From 9e6fd9976915dbcf102b61be5925e3596a83566f Mon Sep 17 00:00:00 2001 From: Philippe PITTOLI Date: Wed, 5 Jun 2019 22:20:21 +0200 Subject: [PATCH] Set some functions public. --- src/ipc.cr | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ipc.cr b/src/ipc.cr index 955c2ab..3fe6d65 100644 --- a/src/ipc.cr +++ b/src/ipc.cr @@ -190,8 +190,8 @@ class IPC::Event end class IPC::Connection - @closed = false - @connection : LibIPC::Connection + getter connection : LibIPC::Connection + getter closed = false # connection already established def initialize(c : LibIPC::Connection)