X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Packets%2Ftypeidvalue.cti;h=3dc341925859e8e9ca566e90b306aa6cb830aaca;hb=032707d24b1059febe83ce56b11fd79df106c6e2;hp=9c78ae1e5d8d9c5485cc57dc42b066e7fd94a0a9;hpb=c52cd7d87dbb525c1267aad27391b8b7365dbb57;p=senf.git diff --git a/Packets/typeidvalue.cti b/Packets/typeidvalue.cti index 9c78ae1..3dc3419 100644 --- a/Packets/typeidvalue.cti +++ b/Packets/typeidvalue.cti @@ -30,25 +30,25 @@ ///////////////////////////////cti.p/////////////////////////////////////// template -prefix_ satcom::lib::TypeIdValue::TypeIdValue(Type *) +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,5 @@ prefix_ satcom::lib::TypeIdValue const satcom::lib::typeIdValue() // Local Variables: // mode: c++ -// c-file-style: "satcom" +// c-file-style: "senf" // End: