forked from microsoft/cppgraphqlgen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
HumanData.h
40 lines (28 loc) · 1.05 KB
/
HumanData.h
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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
#pragma once
#ifndef HUMANDATA_H
#define HUMANDATA_H
#include "HeroData.h"
#include "HumanObject.h"
namespace graphql::learn {
class Human
{
public:
explicit Human(std::string&& id, std::optional<std::string>&& name,
std::vector<Episode>&& appearsIn, std::optional<std::string>&& homePlanet) noexcept;
void addFriends(std::vector<SharedHero> friends) noexcept;
const response::IdType& getId() const noexcept;
const std::optional<std::string>& getName() const noexcept;
std::optional<std::vector<std::shared_ptr<object::Character>>> getFriends() const noexcept;
std::optional<std::vector<std::optional<Episode>>> getAppearsIn() const noexcept;
const std::optional<std::string>& getHomePlanet() const noexcept;
private:
const response::IdType id_;
const std::optional<std::string> name_;
const std::vector<Episode> appearsIn_;
const std::optional<std::string> homePlanet_;
std::vector<WeakHero> friends_;
};
} // namespace graphql::learn
#endif // HUMANDATA_H