blob: 7a2d58d5c9b9a440ca93bb8c3d2b9e864d74e6e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#pragma once
#include "common.hpp"
#include "baseref.hpp"
namespace intellect {
namespace level2 {
struct ref : public baseref<ref>
{
using baseref<ref>::baseref;
};
}
}
|