src/core/config.h
changeset 2474 1d1f77782138
child 2531 b451b5fc8b57
--- /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 <string>
+
+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<Object> obj);
+
+} // namespace Config
+
+} // namespace ns3
+
+#endif /* CONFIG_H */