摘要: #ifndef __BUILDER_MODEL__#define __BUILDER_MODEL__#include #include #include using namespace std;class Product{private: vector m_product;public: void add(string strtemp) { m_product.push_back(strtemp); } void show() { vector::iterator iter = m_product.begin(); ... 阅读全文
posted @ 2013-11-08 10:47 解放1949 阅读(149) 评论(0) 推荐(0) 编辑