搜索资源列表
minihr
- 迷你人事管理系统,学习Struct入门例子。用eclipse开发的,直接放到导入eclipse中就可以运行
ctml
- 浮点数基本运算 浮点数的基本运算主要有四则运算、符号处理、大小比较,以及浮点数分柝等。 包含头文件 \"fn.hpp\" #include \"fn.hpp\" 浮点数基本运算 浮点数的基本运算中有加、减、乘、除、取负、绝对值、相等比较等。 加减乘除 加、减、乘、除四个运算极为相似,都是需要两个参数,结果当然也是浮点数了。 例子: // 加 减 乘 除 btil::fn::plus<f1, f2>::value // f1+f2 的结果 btil::fn::minus<f1,
CTP行情交易接口.Net封装完整版源码
- 在原来基础上进行了些修改,增加了完整的交易接口支持。struct.h头文件修改自海风版C#接口的struct.cs文件,非常感谢。 CTP里面的结构类型非常多,所以这个struct.cs文件的工作量非常大,而且海风为每一个类型都进行了注释,(VStudio里面编程的时候,IntelliSense就可以自动提示),真的很不容易,再谢海风一次。
上期CTP行情交易接口.Net封装-20120522
- 上期技术CTP行情交易接口.Net封装完整版 20120522: 修正了枚举变量未指定类型的bug。 CTP.dll 将非托管C++库转换为托管库,供.Net程序调用。包括行情接口和交易接口。 Struct.h头文件修改自海风版C#的Struct.cs文件,非常感谢! CSharpMdTest C#行情接口测试实例,跟上期技术官方提供的例子一致 CSTraderTest C#交易接口测试,跟上期技术官方提供的例子一致 CtpMdPlugin
carmanage
- 汽车租赁管理系统简单代码,基于myeclipse+mysql+struct的可运行的代码,注意发布和建库。-Car rental management system is simple code, based on myeclipse+ mysql+ struct can run the code, pay attention to publishing and archiving.
examinationon_line
- 网络在线考试系统 struct 1.2+ Ajax+Sql server 2000 内有详细安装说明-Online examination system struct 1.2+ Ajax+ Sql server 2000, there are detailed installation instructions
crm
- JAVA实现的中小型企业CRM客户关系管理系统,为Struct Spring Ibatis架构实现,企业应用或者学习的好系统-JAVA implementation of small and medium-sized enterprise CRM customer relationship management system, Struct Spring Ibatis implementation architecture, enterprise application or a good st
client_serveur
- client socket include <sys/types.h> include <sys/socket.h> include <stdio.h> include <netinet/in.h> include <arpa/inet.h> include <unistd.h> int main() { int sockfd int len struct so
cPROGRAM
- C、C++学员成绩管理系统,主要做了对学员信息的增加、删除、修改、和查询,是用STRUCT写的,很有条理-C, C++ student achievement management system, mainly for students of information to add, delete, modify, and query, is written in STRUCT, it is structured
StaffandDepartmentManagmentUsingStruts
- 员工和部门管理系统,使用了struct,可以作为很好的参考-Staff and departmental management system, using the struct, can serve as a good reference for
XMLTree
- XML tree displays the XML content in TreeView. The function helps to extract each XML Tag from source and then put it in to TreeView, follow the XML struct. It also display the content inside each XML Tag.
XMLTreeDOM
- XML tree displays the XML content in TreeView. The function helps to extract each XML Tag from source and then put it in to TreeView, follow the XML struct. It also display the content inside each XML Tag. The other advantage is display the attribu
Managementsystemsoftware
- 管理系统软件 2.程序完成后应该完成如下基本功能: 1)用自定义结构体typedef struct设计该软件的数据结构; 2)用数组或指针链表将所有学生的数据按照学号顺序链接起来。 3)程序能够按照学号顺序输入学生的三门成绩,并计算平均成绩和总成绩。 4)程序能够显示已经输入的指定学号的学生成绩以及平均成绩和总成绩。 5)程序能够按要求显示指定分数段的学生成绩以及平均成绩和总成绩。 6)能够统计班级总人数、班级平均成绩。 7)能够增加和删除指定学生的成绩。 8
BankOnline
- struct+JSP+javabean银行账户管理系统-struct+ JSP+ javabean bank account management system
2
- 二.功能要求 学生成绩记录包括:学号、姓名、英语、程序设计基础、数据结构5个数据项。 1.学生成绩链表的建立与读文件: 用于输入学生成绩记录,要求链表结点按学号顺序排列。或从文件读取成绩记录而 建立链表。 2.学生成绩记录的插入:要求能按学号进行插入。 3.学生成绩记录的查询:要求能按学号和姓名进行查询。 4.学生成绩记录的删除:要求能按学号和姓名进行删除。 5.学生成绩表的输出与写入文件:要求输出整个学生成绩表所有的记录及写入文件。 -struct
xml_test
- Libxml 是一个实现读、创建及操纵XML数据功能的C语言库。这个指南提供例子代码并给出它基本功能的解释。在这个项目的主页上有Libxml及更多关于它可用的资料。包含有完整的API文档。这个指南并不能替代这些完整的文档,但是阐明功能需要使用库来完成基本操作。 -test xml file to struct
RepairIOR
- 【示例代码功能说明】 读取并解析出一个IOR文件中各个属性信息,然后按照CDR的编码规则,重新将其编写 生成一个新的IOR文件,在新的IOR文件中,将其中的HOST属性强制改为了计算机的主机名。 其他各个字段的属性信息保持与原IOR文件保持一致。 【阅读后可掌握如下知识点】 1.可以深刻理解CORBA技术中互操作对象的引用(IOR)的概念; 2.可以深刻掌握CDR的解码技术。 以上两点是TAO自带的例子程序(..\ACE_wrappers\T
readsungard
- 转换金仕达二进制的行情数据到文本,格式由ksftquota_pubdata_item_tag定义-Read binary data of Kingstar MarketData,Data Struct is defined by ksftquota_pubdata_item_tag
readwis
- 自己编制的matlab函数文件,输入参数为WIS格式的测井数据文件路径,输出为存储二维波形数据的结构体,可以从WIS文件中提取二维波形数据-a matlab function file input: wis well logging data file path output: a struct of WaveData purpose: extract 2D WaveData wis file