|
1
|
1 #pragma once
|
|
|
2
|
|
|
3 #include "cuesheet_index_list.h"
|
|
|
4 #include <SDK/file_info_impl.h>
|
|
|
5
|
|
|
6 namespace cue_creator
|
|
|
7 {
|
|
|
8 struct t_entry
|
|
|
9 {
|
|
|
10 file_info_impl m_infos;
|
|
|
11 pfc::string8 m_file, m_fileType, m_flags, m_trackType = "AUDIO";
|
|
|
12 unsigned m_track_number;
|
|
|
13
|
|
|
14 bool isTrackAudio() const;
|
|
|
15
|
|
|
16 t_cuesheet_index_list m_index_list;
|
|
|
17
|
|
|
18 void set_simple_index(double p_time);
|
|
|
19 void set_index01(double index0, double index1);
|
|
|
20 };
|
|
|
21
|
|
|
22 typedef pfc::chain_list_v2_t<t_entry> t_entry_list;
|
|
|
23
|
|
|
24 void create(pfc::string_formatter & p_out,const t_entry_list & p_list);
|
|
|
25 pfc::string_formatter create(const t_entry_list& p_list);
|
|
|
26 }; |