mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
ae65e281f3
to reflect the new license. We understand that people may be surprised that we're moving the header entirely to discuss the new license. We checked this carefully with the Foundation's lawyer and we believe this is the correct approach. Essentially, all code in the project is now made available by the LLVM project under our new license, so you will see that the license headers include that license only. Some of our contributors have contributed code under our old license, and accordingly, we have retained a copy of our old license notice in the top-level files in each project and repository. llvm-svn: 351636
62 lines
2.1 KiB
C++
62 lines
2.1 KiB
C++
//===-- ResourceVisitor.h ---------------------------------------*- C++-*-===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===---------------------------------------------------------------------===//
|
|
//
|
|
// This defines a base class visiting resource script resources.
|
|
//
|
|
//===---------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_TOOLS_LLVMRC_RESOURCEVISITOR_H
|
|
#define LLVM_TOOLS_LLVMRC_RESOURCEVISITOR_H
|
|
|
|
#include "llvm/Support/Error.h"
|
|
|
|
namespace llvm {
|
|
namespace rc {
|
|
|
|
class RCResource;
|
|
|
|
class CaptionStmt;
|
|
class ClassStmt;
|
|
class CharacteristicsStmt;
|
|
class ExStyleStmt;
|
|
class FontStmt;
|
|
class LanguageResource;
|
|
class StyleStmt;
|
|
class VersionStmt;
|
|
|
|
class Visitor {
|
|
public:
|
|
virtual Error visitNullResource(const RCResource *) = 0;
|
|
virtual Error visitAcceleratorsResource(const RCResource *) = 0;
|
|
virtual Error visitBitmapResource(const RCResource *) = 0;
|
|
virtual Error visitCursorResource(const RCResource *) = 0;
|
|
virtual Error visitDialogResource(const RCResource *) = 0;
|
|
virtual Error visitHTMLResource(const RCResource *) = 0;
|
|
virtual Error visitIconResource(const RCResource *) = 0;
|
|
virtual Error visitMenuResource(const RCResource *) = 0;
|
|
virtual Error visitStringTableResource(const RCResource *) = 0;
|
|
virtual Error visitUserDefinedResource(const RCResource *) = 0;
|
|
virtual Error visitVersionInfoResource(const RCResource *) = 0;
|
|
|
|
virtual Error visitCaptionStmt(const CaptionStmt *) = 0;
|
|
virtual Error visitClassStmt(const ClassStmt *) = 0;
|
|
virtual Error visitCharacteristicsStmt(const CharacteristicsStmt *) = 0;
|
|
virtual Error visitExStyleStmt(const ExStyleStmt *) = 0;
|
|
virtual Error visitFontStmt(const FontStmt *) = 0;
|
|
virtual Error visitLanguageStmt(const LanguageResource *) = 0;
|
|
virtual Error visitStyleStmt(const StyleStmt *) = 0;
|
|
virtual Error visitVersionStmt(const VersionStmt *) = 0;
|
|
|
|
virtual ~Visitor() {}
|
|
};
|
|
|
|
} // namespace rc
|
|
} // namespace llvm
|
|
|
|
#endif
|