| 4 | namespace LIEF::pdb::py { |
| 5 | template<> |
| 6 | void create<pdb::types::Array>(nb::module_& m) { |
| 7 | nb::class_<pdb::types::Array, pdb::Type> type(m, "Array", |
| 8 | R"doc( |
| 9 | This class represents a ``LF_ARRAY`` PDB type. |
| 10 | )doc"_doc |
| 11 | ); |
| 12 | } |
| 13 | |
| 14 | } |
nothing calls this directly
no outgoing calls
no test coverage detected