20 lines · cpp
1//===- HLSLResource.cpp - HLSL Resource helper objects --------------------===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===----------------------------------------------------------------------===//8///9/// \file This file contains helper objects for working with HLSL Resources.10///11//===----------------------------------------------------------------------===//12 13#include "llvm/Frontend/HLSL/HLSLResource.h"14 15using namespace llvm;16using namespace llvm::hlsl;17 18// Intentionally empty; this file can be removed when more cpp files are added19// to the HLSLFrontend lib.20