代码搜索:Command
找到约 10,000 项符合「Command」的源代码
代码结果 10,000
www.eeworm.com/read/358882/10177014
zip command.zip
www.eeworm.com/read/358882/10177018
ocx command.ocx
www.eeworm.com/read/358882/10177052
oca command.oca
www.eeworm.com/read/357821/10200725
h command.h
#ifndef _COMMAND_H
#define _COMMAND_H
struct command_t {
const char *name;
bool (*run)(int argc, char **argv);
void (*usage)(void);
};
extern void command_mode(void);
extern bool autoboot_mode(
www.eeworm.com/read/357821/10200772
o command.o
www.eeworm.com/read/357821/10200777
c command.c
#include
#include
#include
#include
#include
#include
#include
#include
#define MAX_ARGS 20
#define report
www.eeworm.com/read/357688/10202796
opt command.opt
www.eeworm.com/read/357688/10202797
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/357688/10202802
ncb command.ncb
www.eeworm.com/read/357688/10202807
cpp command.cpp
//Command.cpp
#include "2.h"
#include "1.h"
#include
Command::Command()
{
}
Command::~Command()
{
}
void Command::Excute()
{
}
ConcreteCommand::ConcreteComm