// Copyright 2019 The TAL Authors. All rights reserved.
#ifndef LIB_OWCR_EXTENSION_PUBLIC_IEXTENSION_REPORT_DELEGATE_
#define LIB_OWCR_EXTENSION_PUBLIC_IEXTENSION_REPORT_DELEGATE_

namespace owcr {
namespace extension {

class IExtensionReportDelegate {
 public:
  IExtensionReportDelegate() {}
  virtual ~IExtensionReportDelegate() {}
};

}  // namespace extension
}  // namespace owcr
#endif  // LIB_OWCR_EXTENSION_PUBLIC_IEXTENSION_REPORT_DELEGATE_
