File indexing completed on 2024-04-21 04:03:07

0001 /***************************************************************************
0002                                cmapcommand.cpp
0003                              -------------------
0004     begin                : Fri Jun 7 2002
0005     copyright            : (C) 2002 by Kmud Developer Team
0006     email                : kmud-devel@kmud.de
0007  ***************************************************************************/
0008 
0009 /***************************************************************************
0010  *                                                                         *
0011  *   This program is free software; you can redistribute it and/or modify  *
0012  *   it under the terms of the GNU General Public License as published by  *
0013  *   the Free Software Foundation; either version 2 of the License, or     *
0014  *   (at your option) any later version.                                   *
0015  *                                                                         *
0016  ***************************************************************************/
0017 
0018 #include "cmapcommand.h"
0019 
0020 
0021 CMapCommand::CMapCommand(QString name) : QUndoCommand()
0022 
0023 {
0024     m_name = name;
0025 }
0026 
0027 CMapCommand::~CMapCommand()
0028 {
0029 }
0030