⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 filter.h

📁 A paper that I presented on Supervisory Control and Data Acquisition (SCADA) won the second prize at
💻 H
字号:
/*!
*  
*
* sharat@mit.edu
*/
#ifndef __filter_h__
#define __filter_h__

#include <image.h>
#include <iostream>
#include <vector>

using namespace std;

class filter:public image
{
 public: 
  filter():image(1,1){}
  filter(int height,int width):image(height,width){}
  filter(const filter& rhs);
  filter& operator=(const filter& rhs);
};

/*!
 */
 ostream & operator <<(ostream& out,const filter& filt);
 /*!
 */
 istream& operator >> (istream & in,filter & filt);
#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -