MCPcopy Create free account
hub / github.com/Geode-solutions/OpenGeode / AdditionalFiles

Class AdditionalFiles

include/geode/basic/input.hpp:46–61  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

44 };
45
46 struct AdditionalFiles
47 {
48 [[nodiscard]] bool has_additional_files() const
49 {
50 const auto check_missing = []( const auto& file ) {
51 return file.is_missing;
52 };
53 return absl::c_find_if( optional_files, check_missing )
54 != optional_files.end()
55 || absl::c_find_if( mandatory_files, check_missing )
56 != mandatory_files.end();
57 }
58
59 std::vector< AdditionalFile > optional_files;
60 std::vector< AdditionalFile > mandatory_files;
61 };
62
63 template < typename Object, typename... Args >
64 class Input : public IOFile

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected