?? debug.h
字號:
struct co_debugger
{ /* for debugging constellations */
co_debugger(int);
~co_debugger();
void insert(complex);
void reset() { ptr = 0; }
int getcount() { return ptr; }
void print(char*);
private:
complex *vec;
int len, ptr;
};
struct db_tick;
struct debugger
{ debugger(int, int);
~debugger();
void insert(float = 0.0, float = 0.0, float = 0.0, float = 0.0);
void tick(char);
void reset() { ptr = nticks = 0; }
int getcount() { return ptr; }
void print(char*);
private:
float *vec[4]; db_tick *ticks;
int nrows, ncols, ptr, nticks;
};
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -