代码搜索:Include
找到约 10,000 项符合「Include」的源代码
代码结果 10,000
www.eeworm.com/read/234649/14102629
h student.h
#pragma once
#ifndef INCLUDE_STUDENT_H
#define INCLUDE_STUDENT_H
#include "entity.h"
#include
using namespace std;
class Student :
public Entity
{
int age;
char sex;
pub
www.eeworm.com/read/234649/14102660
h course.h
#pragma once
#ifndef INCLUDE_COURSE_H
#define INCLUDE_COURSE_H
#include "entity.h"
#include "Teacher.h"
#include
using namespace std;
class Course :
public Entity
{
double
www.eeworm.com/read/234649/14102661
h teacher.h
#pragma once
#ifndef INCLUDE_TEACHER_H
#define INCLUDE_TEACHER_H
#include "entity.h"
#include
using namespace std;
class Teacher :
public Entity
{
public:
Teacher(string n
www.eeworm.com/read/232006/14211749
makefile
EXEC=fs44b0mu110
OBJS=fs44b0mu110.o
SRC=fs44b0mu110.c
INCLUDE=/usr/src/uClinux-040408/linux-2.4.x/include
CC=arm-elf-gcc
LD=arm-elf-ld
MODCFLAGS=-D__KERNEL__ -I$(INCLUDE) -o2 \
-fno-stric
www.eeworm.com/read/232005/14211769
makefile
EXEC=keydriver
OBJS=keydriver.o
SRC=keydriver.c
INCLUDE=/usr/src/uClinux-040408/linux-2.4.x/include
CC=arm-elf-gcc
LD=arm-elf-ld
MODCFLAGS=-D__KERNEL__ -I$(INCLUDE) -o2 \
-fno-strict-alia
www.eeworm.com/read/229742/14318117
makefile
EXEC =gpio
OBJS =gpio.o
SRC =gpio.c
INCLUDE = /usr/src/uClinux-dist/linux-2.4.x/include
CC = arm-elf-gcc
LD = arm-elf-ld
MODCFLAGS = -D__KERNEL__ -I$(INCLUDE) -Wall -O2 -fno-strict-aliasing -
www.eeworm.com/read/229742/14318133
makefile
EXEC =spi
OBJS =spi.o
SRC =spi.c
INCLUDE = /usr/src/uClinux-dist/linux-2.4.x/include
CC = arm-elf-gcc
LD = arm-elf-ld
MODCFLAGS = -D__KERNEL__ -I$(INCLUDE) -Wall -O2 -fno-strict-aliasing -fno
www.eeworm.com/read/229742/14318146
makefile
EXEC =adc
OBJS =adc.o
SRC =adc.c
INCLUDE = /usr/src/uClinux-dist/linux-2.4.x/include
CC = arm-elf-gcc
LD = arm-elf-ld
MODCFLAGS = -D__KERNEL__ -I$(INCLUDE) -Wall -O2 -fno-strict-aliasing -fno
www.eeworm.com/read/229742/14318177
makefile
EXEC =pwm
OBJS =pwm.o
SRC =pwm.c
INCLUDE = /usr/src/uClinux-dist/linux-2.4.x/include
CC = arm-elf-gcc
LD = arm-elf-ld
MODCFLAGS = -D__KERNEL__ -I$(INCLUDE) -Wall -O2 -fno-strict-aliasing -fno
www.eeworm.com/read/225977/14507956
h mailmessage.h
#ifndef _MAILMESSAGE_H_INCLUDE_
#define _MAILMESSAGE_H_INCLUDE_
#include
#include
#include
using namespace std;
typedef unsigned int uint;
class MailMessage
{
pub