OSDN Git Service

1324e0b5a6acad909ff3dcfccb95d7fe946a01ea
[coroid/inqubus.git] / frontend / src / yukihane / saccubus / converter / profile / Profile.java
1 package yukihane.saccubus.converter.profile;
2
3 /**
4  *
5  * @author yuki
6  */
7 public interface Profile {
8
9     LoinProfile getLoginInfo();
10
11     ProxyProfile getProxySetting();
12
13     VideoProfile getVideoSetting();
14
15     CommentProfile getCommentSetting();
16
17     OutputProfile getOutputFileSetting();
18
19     boolean needsConvert();
20
21     Ffmpeg getFfmpeg();
22
23     GeneralSetting getGeneralSetting();
24 }