customerlist.h
来自「压缩包里有教材<<C++模式设计-基于QT4开源跨平台开发框架>」· C头文件 代码 · 共 18 行
H
18 行
#ifndef CUSTOMERLIST_H#define CUSTOMERLIST_H#include <QList>#include "customer.h"class CustomerList : public QObject { Q_OBJECT public: CustomerList(QString listname = QString()) { setObjectName(listname); } QList<Customer*> getCustomers(); static CustomerList* sample();};#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?