?? input.h
字號:
#ifndef __INPUTS
#define __INPUTS
#include <vector>
#include "member.h"
using namespace std;
class input{
public:
input();
~input();
void set_name(string);
string get_name();
void set_member(string,float,float,float); // triangular
void set_member(string,float,float,float,float); // trapeze
float get(int,float);
void calc(float);
string getm_name(int);
vector<float> mu;
private:
string name;
vector<member* > m;
};
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -