This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ISO C++ | |
#pragma once | |
class Base { | |
private: | |
int m_SomeInt; | |
public: | |
inline int getInt() const { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma once | |
class Base { | |
private: | |
int m_SomeInt; | |
public: | |
inline int getInt() const { | |
return m_someInt; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma once | |
using namespace System; | |
namespace Interop | |
{ | |
template <class T> | |
public ref class ManagedObject | |
{ | |
protected: | |
T* m_Instance; |