1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
// Copyright 2025, Amlal El Mahrouss (amlal@nekernel.org)
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
// Official repository: https://github.com/ocl-org/tproc
#ifndef OCL_TPROC_ROPE_FWD_INL
#define OCL_TPROC_ROPE_FWD_INL
namespace ocl
{
template <class CharT, class Traits, class Allocator>
struct basic_rope<CharT, Traits, Allocator>::tree_impl
{
};
template <class CharT, class Traits, class Allocator>
basic_rope<CharT, Traits, Allocator>::~basic_rope()
{
delete impl_;
impl_ = nullptr;
}
template <class CharT, class Traits, class Allocator>
basic_rope<CharT, Traits, Allocator>&
basic_rope<CharT, Traits, Allocator>::operator=(
const basic_rope<CharT, Traits, Allocator>&& rope)
{
delete this->impl_;
this->impl_ = rope.impl_;
rope.impl_ = nullptr;
return *this;
}
template <class CharT, class Traits, class Allocator>
basic_rope<CharT, Traits, Allocator>::basic_rope(
const basic_rope<CharT, Traits, Allocator>&& rope)
{
delete this->impl_;
this->impl_ = rope.impl_;
rope.impl_ = nullptr;
}
template <class CharT, class Traits, class Allocator>
basic_rope<CharT, Traits, Allocator>::basic_rope(
const boost::core::basic_string_view<CharT>& in)
: impl_(new tree_impl())
{
}
template <class CharT, class Traits, class Allocator>
CharT* basic_rope<CharT, Traits, Allocator>::begin()
{
return nullptr;
}
template <class CharT, class Traits, class Allocator>
CharT* basic_rope<CharT, Traits, Allocator>::end()
{
return nullptr;
}
template <class CharT, class Traits, class Allocator>
basic_rope<CharT, Traits, Allocator>::size_type
basic_rope<CharT, Traits, Allocator>::size()
{
return 0UL;
}
template <class CharT, class Traits, class Allocator>
bool basic_rope<CharT, Traits, Allocator>::empty() const
{
return true;
}
} // namespace ocl
#endif
|