mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 03:27:34 +00:00
19 lines
296 B
C++
19 lines
296 B
C++
/*
|
|
* Copyright (c) 2023, Cameron Youell <cameronyouell@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#define AK_DONT_REPLACE_STD
|
|
|
|
#include <QLineEdit>
|
|
|
|
class Tab;
|
|
|
|
class LocationEdit final : public QLineEdit {
|
|
Q_OBJECT
|
|
public:
|
|
explicit LocationEdit(Tab*);
|
|
};
|