mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-06 03:02:55 +00:00
* Remove unnecessary #include statements * Move it into the TextEditor namespace * Mark the single-argument constructor explicit * Use move() to avoid some unnecessary copies
28 lines
499 B
C++
28 lines
499 B
C++
/*
|
|
* Copyright (c) 2021, ry755 <ryanst755@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/String.h>
|
|
|
|
namespace TextEditor {
|
|
|
|
class FileArgument final {
|
|
public:
|
|
explicit FileArgument(String);
|
|
~FileArgument();
|
|
|
|
String filename() { return m_filename; }
|
|
Optional<size_t> line() { return m_line; }
|
|
Optional<size_t> column() { return m_column; }
|
|
|
|
private:
|
|
String m_filename;
|
|
Optional<size_t> m_line;
|
|
Optional<size_t> m_column;
|
|
};
|
|
|
|
}
|