audiofile.cpp 203 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 #include "audiofile.h" Audiofile::Audiofile(char *_file_path,float _start_seg,float _end_seg){ file_path = _file_path; start_seg = _start_seg; end_seg = _end_seg; } Audiofile::~Audiofile(){ }