it3256_death_recipient.h 466 B

12345678910111213141516171819
  1. #ifndef IT3256_DEATH_RECIPIENT_H
  2. #define IT3256_DEATH_RECIPIENT_H
  3. #include "iremote_object.h"
  4. namespace OHOS {
  5. namespace It3256 {
  6. class It3256IODeathRecipient : public IRemoteObject::DeathRecipient {
  7. public:
  8. It3256IODeathRecipient() = default;
  9. virtual ~It3256IODeathRecipient() = default;
  10. void OnRemoteDied(const wptr<IRemoteObject>& remote) override;
  11. };
  12. } // namespace It3256
  13. } // namespace OHOS
  14. #endif // IT3256_DEATH_RECIPIENT_H