MCPcopy Create free account
hub / github.com/AGWA/git-crypt / Option_def

Class Option_def

parse_options.hpp:34–44  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32#include <vector>
33
34struct Option_def {
35 std::string name;
36 bool* is_set;
37 const char** value;
38
39 Option_def () : is_set(0), value(0) { }
40 Option_def (const std::string& arg_name, bool* arg_is_set)
41 : name(arg_name), is_set(arg_is_set), value(0) { }
42 Option_def (const std::string& arg_name, const char** arg_value)
43 : name(arg_name), is_set(0), value(arg_value) { }
44};
45
46typedef std::vector<Option_def> Options_list;
47

Callers 6

parse_plumbing_optionsFunction · 0.85
initFunction · 0.85
lockFunction · 0.85
add_gpg_userFunction · 0.85
export_keyFunction · 0.85
statusFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected