added acess methods

-get current pipeline
- get current camera
- get res list
- set current camera 
-set current pipeline
This commit is contained in:
Unknown
2019-09-14 13:27:16 +03:00
parent d69d7ddb4f
commit cde4a63feb
5 changed files with 53 additions and 8 deletions

View File

@@ -0,0 +1,7 @@
package Exceptions;
public class NoCameraException extends Exception {
public NoCameraException(){
super("No Camera Connected");
}
}