로딩중...
검색중...
일치하는것 없음
tndumChain.hpp
이 파일의 문서화 페이지로 가기
1
2
#pragma once
3
4
#include "core/builtin/container/native/tnchain.inl"
5
6
namespace
by {
7
8
template
<
typename
K,
typename
V,
typename
defaultContainer = nmap>
9
class
tndumChain
:
public
tnchain
<K, V, defaultContainer> {
10
typedef
tnchain<K, V, defaultContainer>
_super_
;
11
BY(
CLASS
(
tndumChain
,
_super_
))
12
13
public
:
14
tndumChain
() {}
15
16
tndumChain
(
const
super& rhs): super(rhs) {}
17
18
public
:
19
using
super::add;
20
21
nbool
add(
const
K
& key,
const
V
&
val
)
override
{
return
false
; }
22
23
using
super::link;
24
25
nbool
link(
const
typename
super::iter& new1)
override
{
return
false
; }
26
27
public
:
28
static
me singleton;
29
};
30
31
typedef
tndumChain<std::string, node>
ndumChain
;
32
}
by::tnarr
Definition
tnarr.hpp:9
by::tnchain
Definition
tnchain.hpp:11
by::tndumChain
Definition
tndumChain.hpp:9
to Top