blob: 6b86b3b64c2d11d0eb7e13791f23029eddea4279 [file] [log] [blame]
/*
*
* Copyright (c) 2016-2017 Nest Labs, Inc.
* 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.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <Weave/Support/CodeUtils.h>
#include <Weave/Support/logging/WeaveLogging.h>
#include <Weave/Support/WeaveCounter.h>
namespace nl {
namespace Weave {
MonotonicallyIncreasingCounter::MonotonicallyIncreasingCounter(void) :
mCounterValue(0)
{
}
MonotonicallyIncreasingCounter::~MonotonicallyIncreasingCounter(void)
{
}
WEAVE_ERROR
MonotonicallyIncreasingCounter::Init(uint32_t aStartValue)
{
WEAVE_ERROR err = WEAVE_NO_ERROR;
mCounterValue = aStartValue;
return err;
}
WEAVE_ERROR
MonotonicallyIncreasingCounter::Advance(void)
{
WEAVE_ERROR err = WEAVE_NO_ERROR;
mCounterValue++;
return err;
}
uint32_t
MonotonicallyIncreasingCounter::GetValue(void)
{
return mCounterValue;
}
} // Weave
} // nl