| 72 | |
| 73 | public: |
| 74 | explicit ScriptAccess(const filesystem::path &baseDirectory) : |
| 75 | scriptFiles(blocksci::apply(DedupAddressType::all(), [&] (auto tag) { |
| 76 | return ScriptFile<tag.value>{baseDirectory/std::string{dedupAddressName(tag)}}; |
| 77 | })) {} |
| 78 | |
| 79 | template <DedupAddressType::Enum type> |
| 80 | ScriptFile<type> &getFile() { |
nothing calls this directly
no test coverage detected