--- a/src/core/config.cc Fri Mar 07 12:18:34 2008 -0800
+++ b/src/core/config.cc Sun Mar 09 21:07:14 2008 +0100
@@ -409,10 +409,18 @@
{
AttributeList::GetGlobal ()->Set (name, value);
}
+bool SetDefaultFailSafe (std::string name, Attribute value)
+{
+ return AttributeList::GetGlobal ()->SetFailSafe (name, value);
+}
void SetGlobal (std::string name, Attribute value)
{
GlobalValue::Bind (name, value);
}
+bool SetGlobalFailSafe (std::string name, Attribute value)
+{
+ return GlobalValue::BindFailSafe (name, value);
+}
void Connect (std::string path, const CallbackBase &cb)
{
Singleton<ConfigImpl>::Get ()->Connect (path, cb);