代码搜索:objects
找到约 10,000 项符合「objects」的源代码
代码结果 10,000
www.eeworm.com/read/217119/14978145
makefile
PROGRAM= lpc2400
SOURCES.c.lpc2400 = analys.c bitio.c bsynz.c channel.c dcbias.c decode.c deemp.c difmag.c diskio.c dyptrk.c encode.c energy.c ham84.c hp100.c initial.c invert.c irc2pc.c ivfilt.c lpc
www.eeworm.com/read/116208/14982731
mak intopost.mak
# Nmake macros for building Windows 32-Bit apps
!include
YFLAG=-D -r -n
CFLAGS=
OBJECTS = intopost.obj
intopost.exe: $(OBJECTS)
$(link) $(conflags) -out:intopost.exe $(O
www.eeworm.com/read/116208/14982748
mak wc.mak
# Nmake macros for building Windows 32-Bit apps
!include
CFLAGS=-c
OBJECTS = wc.obj
wc.exe: $(OBJECTS)
$(link) $(conflags) -out:wc.exe $(OBJECTS) $(conlibs)
.c.obj:
www.eeworm.com/read/116208/14982780
mak sacalc.mak
# Nmake macros for building Windows 32-Bit apps
!include
YFLAG=-r -n
CFLAGS=
OBJECTS = sacalc.obj
sacalc.exe: $(OBJECTS)
$(link) $(conflags) -out:sacalc.exe $(OBJECTS) $(
www.eeworm.com/read/116150/14986902
vbp scorequeryproj.vbp
Type=OleDll
Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#C:\WINNT\System32\stdole2.tlb#OLE Automation
Reference=*\G{00000205-0000-0010-8000-00AA006D2EA4}#2.5#0#C:\Program Files\Common F
www.eeworm.com/read/116135/14987349
h vector.h
#ifndef VECTOR_H
#define VECTOR_H
#define vector Vector
class ArrayIndexOutOfBounds { };
template
class vector
{
public:
explicit vector( int theSize = 0 ) : current
www.eeworm.com/read/115343/15017216
cpp objectmanager.cpp
#include "ObjectManager.h"
ObjectManager::ObjectManager (void) { }
wxString ObjectManager::GetObjName (wxLongLong id) {
if (Objects.find(id) == Objects.end())
return _T("");
e
www.eeworm.com/read/215865/15035894
makefile
#变量定义
objects = main.o print1.o print2.o
#指明路径
#vpath %.h miniGUI : schedule
#vpath %.c miniGUI : schedule
#或者这样
VPATH=miniGUI : schedule
#生成目标可执行文件
test : $(objects)
gcc -g -o test $(objects)
m
www.eeworm.com/read/214878/15085317
h vector.h
#ifndef VECTOR_H
#define VECTOR_H
#include "Except.h"
#include "StartConv.h"
template
class vector
{
public:
explicit vector( int initSize = 0 ) : theSize( initSize ), theCapac
www.eeworm.com/read/214878/15085331
cpp vector.cpp
#ifndef VECTOR_CPP_
#define VECTOR_CPP_
#include "vector.h"
#include "StartConv.h"
template
const vector & vector::operator=( const vector & rhs )
{
if( t