-
Notifications
You must be signed in to change notification settings - Fork 16
/
BaseMapCollection.cpp
39 lines (38 loc) · 1.14 KB
/
BaseMapCollection.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
#include "pch.h"
#include "BaseMapCollection.h"
#include "BaseMapCollection.g.cpp"
namespace winrt::test_component::implementation
{
Windows::Foundation::Collections::IIterator<Windows::Foundation::Collections::IKeyValuePair<hstring, test_component::Base>> BaseMapCollection::First()
{
throw hresult_not_implemented();
}
test_component::Base BaseMapCollection::Lookup(hstring const& key)
{
throw hresult_not_implemented();
}
uint32_t BaseMapCollection::Size()
{
throw hresult_not_implemented();
}
bool BaseMapCollection::HasKey(hstring const& key)
{
throw hresult_not_implemented();
}
Windows::Foundation::Collections::IMapView<hstring, test_component::Base> BaseMapCollection::GetView()
{
throw hresult_not_implemented();
}
bool BaseMapCollection::Insert(hstring const& key, test_component::Base const& value)
{
throw hresult_not_implemented();
}
void BaseMapCollection::Remove(hstring const& key)
{
throw hresult_not_implemented();
}
void BaseMapCollection::Clear()
{
throw hresult_not_implemented();
}
}