/* * Copyright (c) 2020, the SerenityOS developers. * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include "XSV.h" #include #include namespace Reader { class CSV : public XSV { public: CSV(StringView source, ParserBehavior behaviors = default_behaviors()) : XSV(source, { ",", "\"", ParserTraits::Repeat }, behaviors) { } }; }