X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Socket%2FFileHandle.ih;h=84df70c79e1dcf072524ce15bbd29d5dd2887ac2;hb=55d09e34a5b9a9c7af23cc5ecb0ab79d58757a2d;hp=bd5b1c7efda4df898d5134962535431741af87e7;hpb=8d2d26f114d3df0a60c5c516fcf40671b1e55558;p=senf.git diff --git a/Socket/FileHandle.ih b/Socket/FileHandle.ih index bd5b1c7..84df70c 100644 --- a/Socket/FileHandle.ih +++ b/Socket/FileHandle.ih @@ -1,9 +1,9 @@ // $Id$ // // Copyright (C) 2006 -// Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS) -// Kompetenzzentrum fuer Satelitenkommunikation (SatCom) -// Stefan Bund +// Fraunhofer Institute for Open Communication Systems (FOKUS) +// Competence Center NETwork research (NET), St. Augustin, GERMANY +// Stefan Bund // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -36,6 +36,7 @@ namespace senf { + class FileHandle; /** \brief FileHandle referenced body @@ -84,17 +85,24 @@ namespace senf { resulting body/handle is not valid() */ virtual ~FileBody(); + // NO DESTRUCTOR HERE (that is, only an empty virtual destructor) - destructors and virtual + // functions don't mix. What would be in the the destructor is in 'destroyClose()' which is + // called from FileHandle::~FileHandle() *before* the last handle dies. + // no copy // no conversion constructors ///@} /////////////////////////////////////////////////////////////////////////// + FileHandle handle(); + int fd() const; void fd(int fd); void close(); void terminate(); + void destroyClose(); bool readable() const; void waitReadable() const;