MCPcopy Create free account
hub / github.com/Illumina/paragraph / Path

Method Path

external/jsoncpp/jsoncpp.cpp:4002–4016  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4000// //////////////////////////////////////////////////////////////////
4001
4002Path::Path(const JSONCPP_STRING& path,
4003 const PathArgument& a1,
4004 const PathArgument& a2,
4005 const PathArgument& a3,
4006 const PathArgument& a4,
4007 const PathArgument& a5) {
4008 InArgs in;
4009 in.reserve(5);
4010 in.push_back(&a1);
4011 in.push_back(&a2);
4012 in.push_back(&a3);
4013 in.push_back(&a4);
4014 in.push_back(&a5);
4015 makePath(path, in);
4016}
4017
4018void Path::makePath(const JSONCPP_STRING& path, const InArgs& in) {
4019 const char* current = path.c_str();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected