src/core/object.cc
Wed, 27 Feb 2008 21:41:34 +0100 Mathieu Lacage introduce the ns3::String class, get rid of the string -> Attribute implicit conversion, and get rid of MakeDataRate, port PointToPointNetDevice to Attributes
Tue, 26 Feb 2008 22:40:20 +0100 Mathieu Lacage do not use the private constructor to avoid overload resolution confusions.
Mon, 25 Feb 2008 22:06:14 +0100 Mathieu Lacage add a few public methods for the Config code
Fri, 22 Feb 2008 00:12:47 +0100 Mathieu Lacage invoke getters on tid temp variable to allow proper iteration over tid list.
Fri, 22 Feb 2008 00:08:00 +0100 Mathieu Lacage actually allow connection and disconnection to trace sources registered in TypeIds
Thu, 21 Feb 2008 19:46:39 +0100 Mathieu Lacage Object::Set/Get -> Object::SetAttribute/GetAttribute
Thu, 21 Feb 2008 19:31:17 +0100 Mathieu Lacage Attributes -> AttributeList
Thu, 21 Feb 2008 19:28:41 +0100 Mathieu Lacage AddParameter -> AddAttribute
Wed, 20 Feb 2008 21:45:42 +0100 Mathieu Lacage value.h -> attribute.h
Wed, 20 Feb 2008 20:57:59 +0100 Mathieu Lacage Accessor -> AttributeAccessor
Wed, 20 Feb 2008 20:24:52 +0100 Mathieu Lacage ParamSpec -> Accessor
Wed, 20 Feb 2008 19:57:31 +0100 Mathieu Lacage PValue -> Attribute
Wed, 20 Feb 2008 19:33:59 +0100 Mathieu Lacage PARAM -> ATTR
Mon, 18 Feb 2008 00:18:45 +0100 Mathieu Lacage split checker from ParamSpec.
Sun, 17 Feb 2008 04:38:52 +0100 Mathieu Lacage merge
Sun, 17 Feb 2008 04:38:41 +0100 Mathieu Lacage Backed out changeset 7b145012b2eb
Sun, 17 Feb 2008 04:38:34 +0100 Mathieu Lacage split initial value from ParamSpec.
Sun, 17 Feb 2008 00:46:24 +0100 Mathieu Lacage get rid of ParamSpec::CreateValue.
Fri, 15 Feb 2008 03:52:56 +0100 Mathieu Lacage get rid of Value::ConvertFrom method.
Fri, 15 Feb 2008 02:08:55 +0100 Mathieu Lacage helper getters and setters for c++ native types.
Fri, 08 Feb 2008 18:24:35 +0100 Mathieu Lacage merge with HEAD
Fri, 08 Feb 2008 04:11:08 +0100 Mathieu Lacage add automatic conversion from string to PValue.
Fri, 08 Feb 2008 02:21:23 +0100 Mathieu Lacage add a default constructor for the TypeId class
Wed, 06 Feb 2008 18:31:15 +0100 Mathieu Lacage enforce TypeId::PARAM_* flags
Mon, 04 Feb 2008 22:48:26 +0100 Mathieu Lacage split ParamSpec::CreateInitialValue -> ParamSpec::GetInitialValue + ParamSpec::CreateValue
Mon, 04 Feb 2008 22:18:07 +0100 Mathieu Lacage add back IntValue support
Thu, 31 Jan 2008 15:10:21 +0100 Mathieu Lacage make Ptr<T> convertible to a Value.
Wed, 30 Jan 2008 19:13:06 +0100 Mathieu Lacage attempt to perform correctly automatic conversions.
Thu, 31 Jan 2008 22:23:46 +0100 Mathieu Lacage AddInterface -> AggregateObject
Thu, 31 Jan 2008 22:11:03 +0100 Mathieu Lacage QueryInterface -> GetObject
Tue, 15 Jan 2008 12:44:09 +0100 Mathieu Lacage iid -> tid
Tue, 15 Jan 2008 12:43:07 +0100 Mathieu Lacage iid (void) -> GetTypeId (void)
Tue, 15 Jan 2008 12:36:22 +0100 Mathieu Lacage InterfaceId -> TypeId
Thu, 03 Jan 2008 11:37:09 +0100 Mathieu Lacage use NS_OBJECT_ENSURE_REGISTERED and fix off-by-one in IidManager::GetRegistered
Thu, 03 Jan 2008 10:15:41 +0100 Mathieu Lacage check constructor with reference arguments
Thu, 03 Jan 2008 09:10:23 +0100 Mathieu Lacage add InterfaceId::HasConstructor
Thu, 03 Jan 2008 08:42:04 +0100 Mathieu Lacage make the internal InterfaceId constructor explicit
Thu, 03 Jan 2008 08:41:15 +0100 Mathieu Lacage add support to browse the list of existing InterfaceId
Thu, 03 Jan 2008 08:34:31 +0100 Mathieu Lacage get rid of MakeInterfaceId
Wed, 02 Jan 2008 15:54:53 +0100 Mathieu Lacage add 'factory' support to InterfaceId
Wed, 02 Jan 2008 12:24:25 +0100 Mathieu Lacage rewrite interface id metadata
Wed, 02 Jan 2008 11:08:11 +0100 Mathieu Lacage remove some remnants from the iid-a-variable era.
Wed, 02 Jan 2008 10:57:25 +0100 Mathieu Lacage add some separation markers
Wed, 02 Jan 2008 10:33:39 +0100 Mathieu Lacage replace static const Interface iid; with static InterfaceId iid (void);
Wed, 02 Jan 2008 09:25:31 +0100 Mathieu Lacage fix bug 122: get rid of duplicate argument to QueryInterface
Wed, 02 Jan 2008 09:09:24 +0100 Mathieu Lacage add CreateObject<> to instanciate subclasses of the Object base class. Replaces Create<>.
Sat, 13 Oct 2007 15:10:23 -0700 Tom Henderson back out unrelated changes
Sat, 13 Oct 2007 15:06:35 -0700 Tom Henderson Clarify pkt-uid field in doxygen
Mon, 01 Oct 2007 14:34:47 +0100 Gustavo J. A. M. Carneiro merge
Mon, 01 Oct 2007 11:42:41 +0100 Gustavo J. A. M. Carneiro Put back an assertion in Object::DoQueryInterface, erroneously removed during branch merging.
Fri, 28 Sep 2007 11:59:46 +0100 Gustavo J. A. M. Carneiro merge
Tue, 03 Jul 2007 17:05:23 +0200 Mathieu Lacage In some cases, when an event is scheduled against a subclass of Object, and if no one owns a reference directly to this object, the object is alive, has a refcount of zero and the method ran when the event expires runs against the raw pointer which means that we are manipulating an object with a refcount of zero. So, we must disable this check. This is really evil but I see no way to work around this.
Mon, 01 Oct 2007 14:33:17 +0100 Gustavo J. A. M. Carneiro Make Object::QueryInterface and AddInterface check for the aggregate refcount instead of the object refcount, reason explained in a comment near Object::CheckLoose. Add the same check also to TraceConnect/Disconnect and GetTraceResolver.
Thu, 13 Sep 2007 17:47:42 -0700 Craig Dowell checkpoint debug to log
Thu, 06 Sep 2007 13:32:29 +0200 Mathieu Lacage rename ConnectPrinterToAll to TraceAll
Thu, 06 Sep 2007 12:56:31 +0200 Mathieu Lacage add support for NodeList::ConnectPrinterToAll
Thu, 30 Aug 2007 15:20:08 +0200 Mathieu Lacage add missing const
Tue, 28 Aug 2007 15:59:49 +0200 Mathieu Lacage avoid method naming ambiguity in CompositeTraceResolver
Tue, 28 Aug 2007 14:33:53 +0200 Mathieu Lacage constify
Tue, 28 Aug 2007 13:10:18 +0200 Mathieu Lacage document trace source signatures
less more (0) -60 tip