📄 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 + -