?? dot.h
字號:
// file dot.h
//created by alpha 2008.11.3
#ifndef DOT_H
#define DOT_H
#include <list>
#include <string>
#include "triple.h"
using namespace std;
class dot
{
public:
dot();
void dotInsert(string *from, string *to, string info);
void dotInsert(string *from, string *to, string *info);
void dotInsert(string *s, string color);
string *dotToString();
void dotToJpg(string fname);
private:
list<triple *> *lt;
};
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -