| 862 | |
| 863 | #if EXV_XPATH_MEMIO |
| 864 | XPathIo::XPathIo(const std::string& path) { |
| 865 | Protocol prot = fileProtocol(path); |
| 866 | |
| 867 | if (prot == pStdin) |
| 868 | ReadStdin(); |
| 869 | else if (prot == pDataUri) |
| 870 | ReadDataUri(path); |
| 871 | } |
| 872 | |
| 873 | void XPathIo::ReadStdin() { |
| 874 | if (isatty(fileno(stdin))) |
nothing calls this directly
no test coverage detected