| 47 | using BloombergLP::blpapi::EventQueue; |
| 48 | |
| 49 | static void identityFinalizer(SEXP identity_) { |
| 50 | Identity* identity = reinterpret_cast<Identity*>(R_ExternalPtrAddr(identity_)); |
| 51 | if (identity) { |
| 52 | delete identity; |
| 53 | R_ClearExternalPtr(identity_); |
| 54 | } |
| 55 | } |
| 56 | |
| 57 | Identity* authenticateWithId(SEXP con_, SEXP uuid_, SEXP ip_address_, SEXP is_auth_id_, |
| 58 | SEXP app_name_) { |
nothing calls this directly
no outgoing calls
no test coverage detected