| 4 | namespace LIEF::pdb::py { |
| 5 | template<> |
| 6 | void create<pdb::types::Simple>(nb::module_& m) { |
| 7 | nb::class_<pdb::types::Simple, pdb::Type> type(m, "Simple", |
| 8 | R"doc( |
| 9 | This class represents a primitive types (int, float, ...) which are |
| 10 | also named *simple* types in the PDB format. |
| 11 | )doc"_doc |
| 12 | ); |
| 13 | } |
| 14 | |
| 15 | } |
nothing calls this directly
no outgoing calls
no test coverage detected