| 12345678910111213141516171819 |
- #ifndef IT3256_DEATH_RECIPIENT_H
- #define IT3256_DEATH_RECIPIENT_H
- #include "iremote_object.h"
- namespace OHOS {
- namespace It3256 {
- class It3256IODeathRecipient : public IRemoteObject::DeathRecipient {
- public:
- It3256IODeathRecipient() = default;
- virtual ~It3256IODeathRecipient() = default;
- void OnRemoteDied(const wptr<IRemoteObject>& remote) override;
- };
- } // namespace It3256
- } // namespace OHOS
- #endif // IT3256_DEATH_RECIPIENT_H
|