00001 00002 /* $Id: ExCCommand.cpp,v 1.2 2002/08/21 12:08:22 data Exp $ */ 00003 00004 #include "ExCCommand.h" 00005 00006 ExCCommand::ExCCommand(void) 00007 { 00008 m_Command=NO_INPUT; 00009 m_MousePosx=0; 00010 m_MousePosy=0; 00011 } 00012 00013 ExCCommand::~ExCCommand(void) 00014 { 00015 } 00016 00017 ExCCommand::ExCCommand(int Command) 00018 { 00019 m_Command=Command; 00020 m_MousePosx=0; 00021 m_MousePosy=0; 00022 } 00023 00024 ExCCommand::ExCCommand(int Command, int MousePosX ,int MousePosY) 00025 { 00026 m_Command=Command; 00027 m_MousePosx=MousePosX; 00028 m_MousePosy=MousePosY; 00029 } 00030 00031 ExCCommand::ExCCommand(const ExCCommand& Command) 00032 { 00033 m_Command=Command.m_Command; 00034 m_MousePosx=Command.m_MousePosx; 00035 m_MousePosy=Command.m_MousePosy; 00036 } 00037 00038