mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-05 19:25:04 +00:00
17 lines
No EOL
252 B
C++
17 lines
No EOL
252 B
C++
#pragma once
|
|
|
|
namespace nn
|
|
{
|
|
namespace util
|
|
{
|
|
template<typename T>
|
|
class AccessorBase : protected T
|
|
{
|
|
protected:
|
|
AccessorBase();
|
|
|
|
public:
|
|
typedef T value_type;
|
|
};
|
|
};
|
|
}; |