1 /* 2 * Copyright (c) 2023 Huawei Device Co., Ltd. 3 * 4 * HDF is dual licensed: you can use it either under the terms of 5 * the GPL, or the BSD license, at your option. 6 * See the LICENSE file in the root of this repository for complete details. 7 */ 8 9 #ifndef OHOS_HDI_ASTPOINTERTYPE_H 10 #define OHOS_HDI_ASTPOINTERTYPE_H 11 12 #include "ast/ast_type.h" 13 14 namespace OHOS { 15 namespace HDI { 16 class ASTPointerType : public ASTType { 17 public: ASTPointerType()18 ASTPointerType() : ASTType(TypeKind::TYPE_POINTER, true) {} 19 20 bool IsPointerType() override; 21 22 std::string ToString() const override; 23 24 TypeKind GetTypeKind() override; 25 26 std::string EmitCType(TypeMode mode = TypeMode::NO_MODE) const override; 27 28 std::string EmitCppType(TypeMode mode = TypeMode::NO_MODE) const override; 29 30 // the 'Pointer' type only support use in 'passthrough' mode 31 }; 32 } // namespace HDI 33 } // namespace OHOS 34 35 #endif // OHOS_HDI_ASTPOINTERTYPE_H