blob: b0585b3362e2532d817f7d0094f5bcf7a7eda7dd [file] [log] [blame]
/*
* Copyright 2020 Google LLC
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef SKSL_DSL
#define SKSL_DSL
#include "include/sksl/DSLCore.h"
namespace SkSL {
namespace dsl {
using Block = DSLBlock;
using Case = DSLCase;
using Expression = DSLExpression;
using Field = DSLField;
using Function = DSLFunction;
using Modifiers = DSLModifiers;
using Statement = DSLStatement;
using Var = DSLVar;
} // namespace dsl
} // namespace SkSL
#endif