made getVersion method public
This commit is contained in:
@@ -53,16 +53,16 @@ public class IRDecode {
|
|||||||
return mInstance;
|
return mInstance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private String getVersion() {
|
|
||||||
return irGetVersion();
|
|
||||||
}
|
|
||||||
|
|
||||||
private IRDecode() {
|
private IRDecode() {
|
||||||
String libPath = "/data/irext/libir_decoder.so";
|
String libPath = "/data/irext/libir_decoder.so";
|
||||||
LoggerUtil.getInstance().trace(TAG, "loading server library " + libPath);
|
LoggerUtil.getInstance().trace(TAG, "loading server library " + libPath);
|
||||||
System.load(libPath);
|
System.load(libPath);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getVersion() {
|
||||||
|
return irGetVersion();
|
||||||
|
}
|
||||||
|
|
||||||
public int openFile(int category, int subCate, String fileName) {
|
public int openFile(int category, int subCate, String fileName) {
|
||||||
return irOpen(category, subCate, fileName);
|
return irOpen(category, subCate, fileName);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user