chromium/third_party/angle/src/compiler/preprocessor/Input.cpp

//
// Copyright 2011 The ANGLE Project Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//

#include "compiler/preprocessor/Input.h"

#include <algorithm>
#include <cstring>

#include "common/debug.h"

namespace angle
{

namespace pp
{

Input::Input() :{}

Input::~Input() {}

Input::Input(size_t count, const char *const string[], const int length[])
    :{}

const char *Input::skipChar()
{}

size_t Input::read(char *buf, size_t maxSize, int *lineNo)
{}

}  // namespace pp

}  // namespace angle