Command.cpp 190 B

123456789101112131415
  1. /*
  2. * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #include <LibGUI/Command.h>
  7. namespace GUI {
  8. Command::~Command()
  9. {
  10. }
  11. }