Stan
2.5.0
probability, sampling & optimization
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
src
stan
gm
arguments
arg_data.hpp
Go to the documentation of this file.
1
#ifndef STAN__GM__ARGUMENTS__DATA__HPP
2
#define STAN__GM__ARGUMENTS__DATA__HPP
3
4
#include <
stan/gm/arguments/categorical_argument.hpp
>
5
6
#include <
stan/gm/arguments/arg_data_file.hpp
>
7
8
namespace
stan {
9
10
namespace
gm {
11
12
class
arg_data
:
public
categorical_argument
{
13
14
public
:
15
16
arg_data
():
categorical_argument
() {
17
18
_name
=
"data"
;
19
_description
=
"Input data options"
;
20
21
_subarguments
.push_back(
new
arg_data_file
());
22
23
};
24
25
};
26
27
}
// gm
28
29
}
// stan
30
31
#endif
categorical_argument.hpp
stan::gm::categorical_argument
Definition:
categorical_argument.hpp:11
stan::gm::categorical_argument::_subarguments
std::vector< argument * > _subarguments
Definition:
categorical_argument.hpp:153
stan::gm::argument::_name
std::string _name
Definition:
argument.hpp:76
stan::gm::arg_data
Definition:
arg_data.hpp:12
stan::gm::arg_data::arg_data
arg_data()
Definition:
arg_data.hpp:16
stan::gm::arg_data_file
Definition:
arg_data_file.hpp:10
arg_data_file.hpp
stan::gm::argument::_description
std::string _description
Definition:
argument.hpp:77
[
Stan Home Page
]
© 2011–2014, Stan Development Team.