Esempio n. 1
0
 public InputOutputOption(string input_path, string output_path, RankFileCustomFormat custom_format)
 {
     is_input_from_file_  = true;
     is_output_from_file_ = true;
     input_path_          = input_path;
     output_path_         = output_path;
     custom_format_       = custom_format;
 }
Esempio n. 2
0
 public InputOutputOption(bool is_input_from_file, bool is_output_from_file, RankFileCustomFormat custom_format)
 {
     is_input_from_file_  = is_input_from_file;
     is_output_from_file_ = is_output_from_file;
     custom_format_       = custom_format;
 }
Esempio n. 3
0
 public RankFile(List <Video> video_list, RankFileCustomFormat custom_format)
 {
     video_list_    = video_list;
     custom_format_ = custom_format;
 }
Esempio n. 4
0
 public RankFile(string rank_file_path, RankFileCustomFormat custom_format)
 {
     video_list_    = new List <Video>();
     custom_format_ = custom_format;
     Load(rank_file_path);
 }
Esempio n. 5
0
 public RankFile(RankFileCustomFormat custom_format)
 {
     video_list_    = new List <Video>();
     custom_format_ = custom_format;
 }