thunderbrew/src/util/Autorelease.hpp
2023-01-02 13:17:18 -06:00

18 lines
337 B
C++

#ifndef UTIL_AUTORELEASE_HPP
#define UTIL_AUTORELEASE_HPP
#include <Foundation/Foundation.h>
namespace System_Autorelease {
class ScopedPool {
public:
// Member variables
NSAutoreleasePool* pool;
// Member functions
ScopedPool();
~ScopedPool();
};
}
#endif