diff options
Diffstat (limited to 'part/kxecommand.cpp')
-rw-r--r-- | part/kxecommand.cpp | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/part/kxecommand.cpp b/part/kxecommand.cpp new file mode 100644 index 0000000..f197fc3 --- /dev/null +++ b/part/kxecommand.cpp @@ -0,0 +1,25 @@ +// +// C++ Implementation: kxecommand +// +// Description: +// +// +// Author: Adam Charytoniuk <achary@poczta.onet.pl>, (C) 2003 +// +// Copyright: See COPYING file that comes with this distribution +// +// +#include "kxecommand.h" + +KXECommand::KXECommand(KXEDocument* pDocument) +:KCommand() +{ + m_pDocument = pDocument;; +} + + +KXECommand::~KXECommand() +{ +} + + |