C++程序  |  35行  |  626 B

/*
 * Copyright 2016 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef SKSL_ASTFLOATLITERAL
#define SKSL_ASTFLOATLITERAL

#include "SkSLASTExpression.h"

namespace SkSL {

/**
 * A literal floating point number.
 */
struct ASTFloatLiteral : public ASTExpression {
    ASTFloatLiteral(int offset, double value)
    : INHERITED(offset, kFloat_Kind)
    , fValue(value) {}

    String description() const override {
        return to_string(fValue);
    }

    const double fValue;

    typedef ASTExpression INHERITED;
};

} // namespace

#endif