score
Home
Classes
Namespaces
Files
CommandFactoryKey.hpp
1
#pragma once
2
class
CommandTag
3
{
4
};
5
class
CommandParentTag
6
{
7
};
8
template
<
typename
Tag>
9
class
StringKey
;
10
using
CommandKey
=
StringKey<CommandTag>
;
11
using
CommandGroupKey
=
StringKey<CommandParentTag>
;
12
13
template
<
typename
T>
14
const
CommandGroupKey
& CommandFactoryName();
CommandParentTag
Definition:
CommandFactoryKey.hpp:6
CommandTag
Definition:
CommandFactoryKey.hpp:3
StringKey
Definition:
StringFactoryKey.hpp:8