ladybird/Userland/Applications/TextEditor/FileArgument.h
Andreas Kling 434c190667 TextEditor: Minor cleanups in the FileArgument class
* Remove unnecessary #include statements
* Move it into the TextEditor namespace
* Mark the single-argument constructor explicit
* Use move() to avoid some unnecessary copies
2021-05-06 12:35:25 +02:00

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;
};
}