-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathBaseCollection.cpp
59 lines (58 loc) · 1.69 KB
/
BaseCollection.cpp
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
#include "pch.h"
#include "BaseCollection.h"
#include "BaseCollection.g.cpp"
namespace winrt::test_component::implementation
{
Windows::Foundation::Collections::IIterator<test_component::Base> BaseCollection::First()
{
throw hresult_not_implemented();
}
test_component::Base BaseCollection::GetAt(uint32_t index)
{
throw hresult_not_implemented();
}
uint32_t BaseCollection::Size()
{
throw hresult_not_implemented();
}
Windows::Foundation::Collections::IVectorView<test_component::Base> BaseCollection::GetView()
{
throw hresult_not_implemented();
}
bool BaseCollection::IndexOf(test_component::Base const& value, uint32_t& index)
{
throw hresult_not_implemented();
}
void BaseCollection::SetAt(uint32_t index, test_component::Base const& value)
{
throw hresult_not_implemented();
}
void BaseCollection::InsertAt(uint32_t index, test_component::Base const& value)
{
throw hresult_not_implemented();
}
void BaseCollection::RemoveAt(uint32_t index)
{
throw hresult_not_implemented();
}
void BaseCollection::Append(test_component::Base const& value)
{
throw hresult_not_implemented();
}
void BaseCollection::RemoveAtEnd()
{
throw hresult_not_implemented();
}
void BaseCollection::Clear()
{
throw hresult_not_implemented();
}
uint32_t BaseCollection::GetMany(uint32_t startIndex, array_view<test_component::Base> items)
{
throw hresult_not_implemented();
}
void BaseCollection::ReplaceAll(array_view<test_component::Base const> items)
{
throw hresult_not_implemented();
}
}