MCPcopy Create free account
hub / github.com/Illumina/hap.py / Path

Method Path

external/jsoncpp/jsoncpp.cpp:2916–2929  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2914// //////////////////////////////////////////////////////////////////
2915
2916Path::Path(const std::string &path,
2917 const PathArgument &a1,
2918 const PathArgument &a2,
2919 const PathArgument &a3,
2920 const PathArgument &a4,
2921 const PathArgument &a5) {
2922 InArgs in;
2923 in.push_back(&a1);
2924 in.push_back(&a2);
2925 in.push_back(&a3);
2926 in.push_back(&a4);
2927 in.push_back(&a5);
2928 makePath(path, in);
2929}
2930
2931void Path::makePath(const std::string &path, const InArgs &in) {
2932 const char *current = path.c_str();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected