plot_data.cc
来自「一个共享源码的音频库4」· CC 代码 · 共 39 行
CC
39 行
// 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 + =
减小字号Ctrl + -
显示快捷键?