wasm_file.h 361 B

12345678910111213141516171819202122
  1. /*
  2. * Copyright (C) 2024 Xiaomi Corporation. All rights reserved.
  3. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. */
  5. #ifndef WASM_FILE_H_
  6. #define WASM_FILE_H_
  7. #include "binary_file.h"
  8. namespace analyzer {
  9. class WasmFile : public BinaryFile
  10. {
  11. public:
  12. WasmFile(const char *file_name);
  13. Result Scan();
  14. };
  15. } // namespace analyzer
  16. #endif