thunderbrew/src/util/Autorelease.hpp

19 lines
337 B
C++
Raw Normal View History

2023-01-02 13:17:18 -06:00
#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