X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Socket%2FSocketProtocol.test.hh;h=88acc46bae03563f5c653025e8d49015b7a91283;hb=81ffa1c459b96dd44472bcef37e1e373934ee138;hp=680d8e1105ef4a7daf97f6dda33b560c987ac6f8;hpb=ac6a813d9d99f7add4e13aff7a4bcd314d5604a6;p=senf.git diff --git a/Socket/SocketProtocol.test.hh b/Socket/SocketProtocol.test.hh index 680d8e1..88acc46 100644 --- a/Socket/SocketProtocol.test.hh +++ b/Socket/SocketProtocol.test.hh @@ -1,6 +1,6 @@ // $Id$ // -// Copyright (C) 2006 +// Copyright (C) 2006 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS) // Kompetenzzentrum fuer Satelitenkommunikation (SatCom) // Stefan Bund @@ -40,15 +40,15 @@ namespace test { { public: ~SomeProtocol() {} - + void init_client() const {} void init_server() const {} - std::auto_ptr clone() const + std::auto_ptr clone() const { return std::auto_ptr(new SomeProtocol()); } - unsigned available() const + unsigned available() const { return Policy::ReadPolicy::TEST_SIZE; } - bool eof() const + bool eof() const { return false; } }; @@ -64,5 +64,10 @@ namespace test { // Local Variables: // mode: c++ +// fill-column: 100 // c-file-style: "senf" +// indent-tabs-mode: nil +// ispell-local-dictionary: "american" +// compile-command: "scons -u test" +// comment-column: 40 // End: