blob: 50ad5621d1e2eca979a93cbb3e4ce94e8d2bdd5d [file] [log] [blame]
// Copyright 2013 The Flutter 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 FLUTTER_FML_PLATFORM_DARWIN_SCOPED_NSAUTORELEASEPOOL_H_
#define FLUTTER_FML_PLATFORM_DARWIN_SCOPED_NSAUTORELEASEPOOL_H_
#include "flutter/fml/macros.h"
namespace fml {
// Pushes an autorelease pool when constructed and pops it when destructed.
class ScopedNSAutoreleasePool {
public:
ScopedNSAutoreleasePool();
~ScopedNSAutoreleasePool();
private:
void* autorelease_pool_;
FML_DISALLOW_COPY_AND_ASSIGN(ScopedNSAutoreleasePool);
};
} // namespace fml
#endif // FLUTTER_FML_PLATFORM_DARWIN_SCOPED_NSAUTORELEASEPOOL_H_