Newer
Older
minerva / Userland / Libraries / LibGUI / Command.h
@minerva minerva on 13 Jul 505 bytes Initial commit
/*
 * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 * Copyright (c) 2022, the SerenityOS developers.
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <AK/ByteString.h>

namespace GUI {

class Command {
public:
    virtual ~Command() = default;

    virtual void undo() { }
    virtual void redo() { }

    virtual ByteString action_text() const { return {}; }
    virtual bool merge_with(Command const&) { return false; }

protected:
    Command() = default;
};

}