团队合作该怎么封装类(c++)可参考

#ifndef __MY_QT_PLOT_WIN_H___
#define __MY_QT_PLOT_WIN_H___

#include 
#include "my_qt_utility.h"

namespace MY
{
	namespace QT
	{
		class PLOT_WIN : public QwtPlot
		{	
		public:
			PLOT_WIN(const std::string& tile,QWidget* parent = 0)
			{
				setAutoFillBackground(true);
				return curve;
			}
			void set_curve_samples(QwtPlotCurve* curve, const QVector& sample_val)
			{	
				curve->setSamples(sample_val);
			}
			void create_legend()
			{
				QwtLegend * const legend = new QwtLegend;
			}
		};
	}
}

#endif 

my_qt_plot_win.h.cpp什么都不写,就一个头文件
#include “my_qt_plot_win.h”

解释:1.命名空间MY里面还有命名空间QT
2.里面接口函数当场实现

你可能感兴趣的:(c++,开发语言)