diff -r 24e929fe7d4c -r 1d1f77782138 src/core/config.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/core/config.h Tue Feb 26 01:07:16 2008 +0100 @@ -0,0 +1,25 @@ +#ifndef CONFIG_H +#define CONFIG_H + +#include "attribute.h" +#include "ptr.h" +#include "object.h" +#include + +namespace ns3 { + +namespace Config { + +void Set (std::string path, Attribute value); +void SetDefault (std::string name, Attribute value); +void SetGlobal (std::string name, Attribute value); +void Connect (std::string path, const CallbackBase &cb); +void Disconnect (std::string path, const CallbackBase &cb); + +void RegisterRootNamespaceObject (Ptr obj); + +} // namespace Config + +} // namespace ns3 + +#endif /* CONFIG_H */