X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=PPI%2FConnectors.hh;h=1b7e5403fd2f91525fdf5539719854d73a2fad07;hb=2246ca853064965a7b263c49597c4e74397b989b;hp=ea79933e79e586fededc7eb22340a4f9ec535c59;hpb=a479735a65e334af538b895f182f8efd36a541c5;p=senf.git diff --git a/PPI/Connectors.hh b/PPI/Connectors.hh index ea79933..1b7e540 100644 --- a/PPI/Connectors.hh +++ b/PPI/Connectors.hh @@ -1,6 +1,8 @@ +// $Id$ +// // Copyright (C) 2007 -// Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS) -// Kompetenzzentrum fuer Satelitenkommunikation (SatCom) +// 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 @@ -28,7 +30,7 @@ #include #include #include -#include "../Utils/SafeBool.hh" +#include "../Utils/safe_bool.hh" #include "../Packets/Packets.hh" #include "predecl.hh" #include "detail/Callback.hh" @@ -277,7 +279,7 @@ namespace connector { logic error in the module implementation and an exception is raised. */ - Packet read(); ///< Alias for \ref operator()() + Packet read(); ///< Alias for operator()() OutputConnector & peer() const; @@ -315,7 +317,7 @@ namespace connector { public: void operator()(Packet p); ///< Send out a packet - void write(Packet p); ///< Alias for \ref operator()() + void write(Packet p); ///< Alias for operator()(Packet p) InputConnector & peer() const; @@ -334,7 +336,7 @@ namespace connector { */ class PassiveInput : public PassiveConnector, public InputConnector, - public SafeBool + public safe_bool { public: PassiveInput(); @@ -362,7 +364,7 @@ namespace connector { */ class PassiveOutput : public PassiveConnector, public OutputConnector, - public SafeBool + public safe_bool { public: ActiveInput & peer() const; @@ -378,7 +380,7 @@ namespace connector { */ class ActiveInput : public ActiveConnector, public InputConnector, - public SafeBool + public safe_bool { public: PassiveOutput & peer() const; @@ -395,7 +397,7 @@ namespace connector { */ class ActiveOutput : public ActiveConnector, public OutputConnector, - public SafeBool + public safe_bool { public: PassiveInput & peer() const;