代码搜索:Command
找到约 10,000 项符合「Command」的源代码
代码结果 10,000
www.eeworm.com/read/367199/2849933
h command.h
#if !defined(COMMAND_H)
#define COMMAND_H
#include
struct CommandDS
{
char szElement[81];
};
struct CommandList
{
struct CommandDS Command;
struct CommandList *pNext;
}
www.eeworm.com/read/367199/2849945
c command.c
#include "Command.h"
#include "client.h"
#include
struct CommandList *Add_Command(struct CommandList *pNode,struct CommandDS Command)
{
if (pNode->pNext = (struct CommandList *)mal
www.eeworm.com/read/364575/2902086
cs command.cs
using System;
namespace State
{
///
/// Summary description for Command.
///
public interface Command {
void Execute();
}
}
www.eeworm.com/read/364575/2902104
cs command.cs
using System;
using CsharpPats;
namespace Memento
{
///
/// Command interface
///
public interface Command
{
void Execute();
}
}
www.eeworm.com/read/364575/2902160
cs command.cs
using System;
using CsharpPats;
namespace Mediate
{
///
/// Command interface
///
public interface Command
{
void Execute();
}
}
www.eeworm.com/read/364575/2902232
cs command.cs
using System;
namespace Interpreter
{
///
/// Summary description for Command.
///
public interface Command {
void Execute();
}
}
www.eeworm.com/read/364575/2902278
cs command.cs
using System;
using CsharpPats;
namespace Strategy
{
///
/// Command interface
///
public interface Command
{
void Execute();
}
}
www.eeworm.com/read/364575/2902310
cs command.cs
using System;
namespace CHolder
{
///
/// defines Command interface
///
public interface Command {
void Execute();
}
}
www.eeworm.com/read/364575/2902323
cs command.cs
using System;
namespace ButtonMenu
{
///
/// interface for Command type
///
public interface Command {
void Execute();
}
}
www.eeworm.com/read/364575/2902336
cs command.cs
using System;
namespace UndoCommand
{
///
/// defines Command interface
///
public interface Command {
void Execute();
void Undo();
bool isUndo();
}
}