X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Packets%2Ftypeidvalue.cti;h=4708590c41cf0ea06346748b5e71fd6ea53b2d3d;hb=9a988902090d28007578e93bffd809f6bd913155;hp=9c78ae1e5d8d9c5485cc57dc42b066e7fd94a0a9;hpb=c52cd7d87dbb525c1267aad27391b8b7365dbb57;p=senf.git diff --git a/Packets/typeidvalue.cti b/Packets/typeidvalue.cti index 9c78ae1..4708590 100644 --- a/Packets/typeidvalue.cti +++ b/Packets/typeidvalue.cti @@ -1,6 +1,6 @@ // $Id$ // -// Copyright (C) 2006 +// Copyright (C) 2006 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS) // Kompetenzzentrum fuer Satelitenkommunikation (SatCom) // Stefan Bund @@ -30,25 +30,25 @@ ///////////////////////////////cti.p/////////////////////////////////////// template -prefix_ satcom::lib::TypeIdValue::TypeIdValue(Type *) - : value_(new ValueImpl()) +prefix_ senf::TypeIdValue::TypeIdValue(Type *) + : value_(new ValueImpl()) {} template -prefix_ std::type_info const & satcom::lib::TypeIdValue::ValueImpl::id() +prefix_ std::type_info const & senf::TypeIdValue::ValueImpl::id() { return typeid(Type); } template -prefix_ satcom::lib::TypeIdValue::Value * -satcom::lib::TypeIdValue::ValueImpl::clone() +prefix_ senf::TypeIdValue::Value * +senf::TypeIdValue::ValueImpl::clone() { return new ValueImpl(); } template -prefix_ satcom::lib::TypeIdValue const satcom::lib::typeIdValue() +prefix_ senf::TypeIdValue const senf::typeIdValue() { return TypeIdValue(static_cast(0)); } @@ -59,5 +59,8 @@ prefix_ satcom::lib::TypeIdValue const satcom::lib::typeIdValue() // Local Variables: // mode: c++ -// c-file-style: "satcom" +// fill-column: 100 +// c-file-style: "senf" +// indent-tabs-mode: nil +// ispell-local-dictionary: "american" // End: