LearnWithTouch/App/LearnWithTouch_ios/Libraries/libil2cpp/include/vm/ScopedThreadAttacher.h

21 lines
274 B
C
Raw Normal View History

2019-07-01 14:33:21 +02:00
#pragma once
#include "vm/Domain.h"
#include "vm/Thread.h"
namespace il2cpp
{
namespace vm
{
class ScopedThreadAttacher
{
public:
ScopedThreadAttacher();
~ScopedThreadAttacher();
private:
Il2CppThread* m_AttachedThread;
};
}
}