blob: 8d1c16addd81df1905af92cf6c5c3603075814b9 [file] [log] [blame]
// Copyright 2017 PDFium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CORE_FXCRT_AUTORESTORER_H_
#define CORE_FXCRT_AUTORESTORER_H_
#include "core/fxcrt/fx_memory.h"
namespace fxcrt {
template <typename T>
class AutoRestorer {
public:
FX_STACK_ALLOCATED();
explicit AutoRestorer(T* location)
: m_Location(location), m_OldValue(*location) {}
~AutoRestorer() {
if (m_Location)
*m_Location = m_OldValue;
}
void AbandonRestoration() { m_Location = nullptr; }
private:
T* m_Location;
const T m_OldValue;
};
} // namespace fxcrt
using fxcrt::AutoRestorer;
#endif // CORE_FXCRT_AUTORESTORER_H_