blob: abfaecbbe6dd44c14cdfeab3f41b8e6f78174068 [file] [log] [blame]
/*
*
* Copyright (c) 2021 Project CHIP Authors
* All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* limitations under the License.
*/
#include <platform/ConfigurationManager.h>
namespace chip {
namespace DeviceLayer {
ConfigurationManagerImpl & ConfigurationManagerImpl::GetDefaultInstance()
{
static ConfigurationManagerImpl sInstance;
return sInstance;
}
ConfigurationManager & ConfigurationMgr()
{
return ConfigurationManagerImpl::GetDefaultInstance();
}
void SetConfigurationMgr(ConfigurationManager * configurationManager) {}
} // namespace DeviceLayer
} // namespace chip