aboutsummaryrefslogtreecommitdiff
path: root/bbot/worker/worker-options.ixx
blob: bc5b21d041b181a23d1f6f4a178288ca28956719 (plain)
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
// -*- C++ -*-
//
// This file was generated by CLI, a command line interface
// compiler for C++.
//

// Begin prologue.
//
//
// End prologue.

namespace bbot
{
  // worker_options
  //

  inline const bool& worker_options::
  help () const
  {
    return this->help_;
  }

  inline const bool& worker_options::
  version () const
  {
    return this->version_;
  }

  inline const uint16_t& worker_options::
  verbose () const
  {
    return this->verbose_;
  }

  inline bool worker_options::
  verbose_specified () const
  {
    return this->verbose_specified_;
  }

  inline const bool& worker_options::
  bootstrap () const
  {
    return this->bootstrap_;
  }

  inline const bool& worker_options::
  startup () const
  {
    return this->startup_;
  }

  inline const bool& worker_options::
  systemd_daemon () const
  {
    return this->systemd_daemon_;
  }

  inline const dir_path& worker_options::
  build () const
  {
    return this->build_;
  }

  inline bool worker_options::
  build_specified () const
  {
    return this->build_specified_;
  }

  inline const dir_path& worker_options::
  environments () const
  {
    return this->environments_;
  }

  inline bool worker_options::
  environments_specified () const
  {
    return this->environments_specified_;
  }

  inline const path& worker_options::
  env_script () const
  {
    return this->env_script_;
  }

  inline bool worker_options::
  env_script_specified () const
  {
    return this->env_script_specified_;
  }

  inline const string& worker_options::
  env_target () const
  {
    return this->env_target_;
  }

  inline bool worker_options::
  env_target_specified () const
  {
    return this->env_target_specified_;
  }

  inline const string& worker_options::
  tftp_host () const
  {
    return this->tftp_host_;
  }

  inline bool worker_options::
  tftp_host_specified () const
  {
    return this->tftp_host_specified_;
  }
}

// Begin epilogue.
//
//
// End epilogue.