代码搜索:Command
找到约 10,000 项符合「Command」的源代码
代码结果 10,000
www.eeworm.com/read/323013/13358663
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/323013/13358716
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/322848/13363971
java command.java
package sjg.scripting;
import sjg.*;
import java.util.*;
/**
* Abstract superclass for a command in the scripting language.
*
* @author Christian Hvid
*/
public abstract class Command {
pu
www.eeworm.com/read/322019/13391024
cpp command.cpp
#include "command.h"
#include "logger.h"
Command::Command(QStringList args, QString logname) {
log = Logger::getLogger(logname);
setReadChannelMode(QProcess::MergedChannels);
connect (t
www.eeworm.com/read/322019/13391048
h command.h
#ifndef COMMAND_H
#define COMMAND_H
#include
#include
#include "myexport.h"
#include "logger.h"
/** @short A simple example using QProcess and logs.
Executes a process and c
www.eeworm.com/read/319513/13449882
cgi command.cgi
#!/usr/bin/perl
#################################################################
# 亂柶愑帠崁亃 #
# 偙偺僗僋儕僾僩偼僼儕乕僜僼僩偱偡丅偙偺僗僋儕僾僩傪巊梡偟偨 #
# 偄偐側傞懝奞偵懳偟偰
www.eeworm.com/read/318767/13472216
ocx command.ocx
www.eeworm.com/read/317396/13504993
ini command.ini
[Command]
Date=Date
PrvMsg=PrvMsg
AllowMsg=AllowMsg
LetShout=LetShout
LetTrade=LetTrade
LetGuild=LetGuild
EndGuild=EndGuild
BanGuildChat=BanGuildChat
AuthAlly=AuthAlly
Auth=联盟
AuthCancel=取消
www.eeworm.com/read/317061/13511093
cpp command.cpp
#include "StdAfx.h"
#include ".\command.h"
Command::Command(void)
{
}
Command::~Command(void)
{
}
www.eeworm.com/read/317061/13511107
h command.h
#pragma once
class Command
{
public:
Command(void);
~Command(void);
virtual void execute()=0;
};