代码搜索:Command
找到约 10,000 项符合「Command」的源代码
代码结果 10,000
www.eeworm.com/read/162314/10315494
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:
};
www.eeworm.com/read/162314/10315502
ncb command.ncb
www.eeworm.com/read/162314/10315519
cpp command.cpp
//Command.cpp
#include "Command.h"
#include "Reciever.h"
#include
Command::Command()
{
}
Command::~Command()
{
}
void Command::Excute()
{
}
ConcreteCommand::Concrete
www.eeworm.com/read/162314/10315523
dsw command.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/162314/10315527
plg command.plg
Build Log
--------------------Configuration: Command - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\ADMIN
www.eeworm.com/read/162314/10315532
dsp command.dsp
# Microsoft Developer Studio Project File - Name="Command" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) C
www.eeworm.com/read/425799/10321751
v command.v
/******************************************************************************
*
* LOGIC CORE: Command module
* MODULE NAME: command()
* COMPANY: Northwest Logic De
www.eeworm.com/read/354697/10332895
c command.c
/*****************************************************************************
* command.c: BIOSBOX 命令实现
*
* Copyright(C) 2007, uCdragon
* All rights reserved.
*
* History
* 2
www.eeworm.com/read/425369/10360233
as command2.as
function openfile(link,objID,startID,type,captions) {
//if (link == "" || link == "-") {
//return (undefined);
//}
isopen=false;
temp = link.split(",");
link_type = link.split(".")[1];
www.eeworm.com/read/425200/10371396
h command.h
/////////////////////////////////////////////////////////////////////////////////////////////////////////
/// Command.h: interface for the Command class.
/// Author - alexcpn@gmail.com
/// Design P