随笔分类 -  code

摘要:1 //list参考 2 3 #ifndef MYLIST_INC 4 #define MYLIST_INC 5 6 #include 7 8 template 9 class MyList 10 { 11 public: 12 MyList(void) 13 { ... 阅读全文
posted @ 2015-12-01 23:04 迷城有你 阅读(339) 评论(0) 推荐(0)
摘要:1 //读写bmp图像,好久的前写的,放这做记录吧 2 3 4 //h 5 #pragma once 6 #include 7 using std::string; 8 9 class BmpRW 10 { 11 public: 12 BmpRW(void); 1... 阅读全文
posted @ 2015-12-01 22:31 迷城有你 阅读(450) 评论(0) 推荐(0)