代码搜索:Command
找到约 10,000 项符合「Command」的源代码
代码结果 10,000
www.eeworm.com/read/421128/10753888
js command.js
///////////////////////////////////////////////////////////////////////////////
//
// (c) Pitney Bowes MapInfo Corporation, 2008. All rights reserved.
//
// The source code below is provided
www.eeworm.com/read/275622/10807409
h command.h
/********************************************************************
created: 2006/08/04
filename: Command.h
author: 李创
http://www.cppblog.com/converse/
purpose: Command模
www.eeworm.com/read/275622/10807419
cpp command.cpp
/********************************************************************
created: 2006/08/04
filename: Command.cpp
author: 李创
http://www.cppblog.com/converse/
purpose: Comman
www.eeworm.com/read/275564/10811778
h command.h
/*-------------------------------------------------------------------------
* Filename: command.h
* Version: $Id: command.h,v 1.1.1.1 2001/06/27 19:47:42 erikm Exp $
* Copyright: Cop
www.eeworm.com/read/275564/10811879
c command.c
/*-------------------------------------------------------------------------
* Filename: command.c
* Version: $Id: command.c,v 1.2 2001/08/06 22:44:52 erikm Exp $
* Copyright: Copyrig
www.eeworm.com/read/275502/10814682
ctl command.ctl
VERSION 5.00
Begin VB.UserControl CommandButton
AutoRedraw = -1 'True
ClientHeight = 3600
ClientLeft = 0
ClientTop = 0
ClientWidth = 4800
Sc
www.eeworm.com/read/349342/10834619
opt command.opt
www.eeworm.com/read/349342/10834626
h command.h
//Command.h
#ifndef _COMMAND_H_
#define _COMMAND_H_
class Reciever;
class Command
{
public:
virtual ~Command();
virtual void Excute() = 0;
protected:
Command();
private:
};
cl
www.eeworm.com/read/349342/10834638
ncb command.ncb
www.eeworm.com/read/349342/10834648
cpp command.cpp
//Command.cpp
#include "Command.h"
#include "Reciever.h"
#include
Command::Command()
{
}
Command::~Command()
{
}
void Command::Excute()
{
}
ConcreteCommand::Concre