| 2914 | // ////////////////////////////////////////////////////////////////// |
| 2915 | |
| 2916 | Path::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 | |
| 2931 | void Path::makePath(const std::string &path, const InArgs &in) { |
| 2932 | const char *current = path.c_str(); |
nothing calls this directly
no outgoing calls
no test coverage detected