Fixed whitespace in all files (no tabs)
[senf.git] / Packets / typeidvalue.cti
index 9c78ae1..4708590 100644 (file)
@@ -1,6 +1,6 @@
 // $Id$
 //
-// Copyright (C) 2006 
+// Copyright (C) 2006
 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
 // Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
 //     Stefan Bund <stefan.bund@fokus.fraunhofer.de>
 ///////////////////////////////cti.p///////////////////////////////////////
 
 template <class Type>
-prefix_ satcom::lib::TypeIdValue::TypeIdValue(Type *)
-    : value_(new ValueImpl<Type>()) 
+prefix_ senf::TypeIdValue::TypeIdValue(Type *)
+    : value_(new ValueImpl<Type>())
 {}
 
 template <class Type>
-prefix_ std::type_info const & satcom::lib::TypeIdValue::ValueImpl<Type>::id()
+prefix_ std::type_info const & senf::TypeIdValue::ValueImpl<Type>::id()
 {
     return typeid(Type);
 }
 
 template <class Type>
-prefix_ satcom::lib::TypeIdValue::Value *
-satcom::lib::TypeIdValue::ValueImpl<Type>::clone()
+prefix_ senf::TypeIdValue::Value *
+senf::TypeIdValue::ValueImpl<Type>::clone()
 {
     return new ValueImpl<Type>();
 }
 
 template <class Type>
-prefix_ satcom::lib::TypeIdValue const satcom::lib::typeIdValue()
+prefix_ senf::TypeIdValue const senf::typeIdValue()
 {
     return TypeIdValue(static_cast<Type*>(0));
 }
@@ -59,5 +59,8 @@ prefix_ satcom::lib::TypeIdValue const satcom::lib::typeIdValue()
 \f
 // Local Variables:
 // mode: c++
-// c-file-style: "satcom"
+// fill-column: 100
+// c-file-style: "senf"
+// indent-tabs-mode: nil
+// ispell-local-dictionary: "american"
 // End: