代码搜索:objects
找到约 10,000 项符合「objects」的源代码
代码结果 10,000
www.eeworm.com/read/138452/13235671
h ih263enc.h
/*==========================================================================*/
/* Copyright (C) 2000 Texas Instruments, Incorporated */
/* All Rights R
www.eeworm.com/read/324903/13238228
cpp group.cpp
#include "Group.h"
#include
using namespace std;
void Group::add(Client* ptr)
{
assert(ptr != NULL);
objects.push_back(ptr);
}
vector::iterator Group::begin()
{
www.eeworm.com/read/324903/13238249
cpp listing.cpp
#include "Listing.h"
#include
using namespace std;
void Listing::add(Advertisement* ptr)
{
assert(ptr != NULL);
objects.push_back(ptr);
}
vector::iterator Li
www.eeworm.com/read/138140/13257660
c itextctlusage.c
/*===========================================================================
FILE: itextctlusage.c
SERVICES: Sample applet using AEE
DESCRIPTION
This file contains usage examples of IText
www.eeworm.com/read/137764/13299800
makefile
CC = g++ -Wall -g
LDLIBS = -lm
OBJECTS=IntList.o NArray.o NPoint.o DensityMap.o HashTree.o HashForest.o
HEADERS=$(OBJECTS:.o=.h)
TARGETS=main
all: $(TARGETS)
$(TARGETS): $(OBJECTS)
$(CC) -o $@ $@
www.eeworm.com/read/239126/13302098
java component.java
/**
* Defines the interface for objects that can have responsibilities
* added to them dynamically.
* @role __Component
*/
public abstract class Component {
public abstract void doSom
www.eeworm.com/read/137290/13333827
pas frxedittaborder.pas
{******************************************}
{ }
{ FastReport v3.0 }
{ Tab order editor }
{ }
{ Copyright (c) 1998-2005 }
{ by Alexander Tzyganenko, }
{ Fast Reports Inc. }
{ }
{*************
www.eeworm.com/read/137284/13335171
makefile
CC = g++
CCFLAG = -c
OBJECTS = main.o Apriori.o AssociationRule.o HashTree.o List.o itemSet.o tzObject.o
apriori : $(OBJECTS)
$(CC) $(LIB) -o $@ $(OBJECTS)
main.o : main.cpp Apriori.h Association
www.eeworm.com/read/137229/13338132
makefile
#
# Makefile for Simple Genetic Algorithm C code
#
#####################################
# Define implicit compilation rules #
#####################################
# uncomment following lines
www.eeworm.com/read/137160/13341921
m remclass.m
%REMCLASS Remove small classes
%
% B = REMCLASS(A,N)
%
% INPUT
% A Dataset
% N Integer, maximum class size to be removed (optional; default 0)
%
% OUTPUT
% B Dataset
%
% DESCR