📄 plot_data.cc
字号:
// This file contains no license whatsoever. It is provided in the public domain as an example// of how to use the audio library//// Bruce Forsberg// forsberg@tns.net// //#include <iostream.h>#include <stdio.h>#include "plot_data.h"plot_data::plot_data( aflibAudio * audio, int id){ _audio = audio; _id = id;}plot_data::~plot_data(){}aflibAudio *plot_data::getAfLibAudio(){ return (_audio);}intplot_data::getID(){ return (_id);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -