mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-08 12:19:37 +03:00
24 lines
401 B
C++
24 lines
401 B
C++
/*
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "XSV.h"
|
|
#include <AK/Forward.h>
|
|
#include <AK/StringView.h>
|
|
|
|
namespace Reader {
|
|
|
|
class CSV : public XSV {
|
|
public:
|
|
CSV(StringView source, ParserBehavior behaviors = default_behaviors())
|
|
: XSV(source, { ",", "\"", ParserTraits::Repeat }, behaviors)
|
|
{
|
|
}
|
|
};
|
|
|
|
}
|