代码搜索结果

找到约 10,000 项符合 Control System 的代码

control.h

#ifndef _CONTROL_H #define _CONTROL_H #include "tubby.h" #define SPECIAL_VERSION #ifdef SPECIAL_VERSION #ifdef LINUX #include "bcasts_lin.h" #endif #ifdef SOLARIS #include "bcasts_sol.h" #endif #e

control.h

/** * Control是最基本的事件责任单元,也可以负责对其本身的重绘 */ #pragma once class Control: public virtual EventTrigger { public: Control(Window *pWnd, bool needKBEvent = true, bool needMouseEvent = true);

control.cpp

#include "GKL.h" using namespace GKL; Control::Control(Window *pWnd, bool needKBEvent, bool needMouseEvent): mpWnd(pWnd), mpPnl(NULL), mNeedKBEvent(needKBEvent), mNeedMouseEvent(needMouseE

control.c

//************************ // 路径识别部分 //************************ //找到黑线位置,存入diff[SIZE_Y]中 //扫描式黑线查找法 void ScanLine(void){ static signed char left,right; //每一行的搜索范围,左起始和右结束 static sig

control.c

//************************ // 路径识别部分 //************************ //找到黑线位置,存入diff[SIZE_Y]中 //扫描式黑线查找法 void ScanLine(void){ static signed char left,right; //每一行的搜索范围,左起始和右结束 static si

control.h

#ifndef CONTROL_H #define CONTROL_H extern int control_init(); extern int control_readline(); extern int control_rldef(); extern int control_readint(); extern int control_readfile(); #endif

control.c

#include "readwrite.h" #include "open.h" #include "getln.h" #include "stralloc.h" #include "substdio.h" #include "error.h" #include "control.h" #include "alloc.h" #include "scan.h" static char inbuf[

control.h

/**************************************************************************** ******* ******* ******* C O N T R O L P A C K