Loading...
Searching...
No Matches
 
 
 
 
 
   18#ifndef COMMANDLINEPARSER_H 
   19#define COMMANDLINEPARSER_H 
   21#include <QCommandLineParser> 
   32    QString inputPath()
 const { 
return mInputPath; }
 
   33    QStringList outputPaths()
 const { 
return mOutputPaths; }
 
   34    QString camera()
 const { 
return mCamera; }
 
   35    int width()
 const { 
return mWidth; }
 
   36    int height()
 const { 
return mHeight; }
 
   37    int startFrame()
 const { 
return mStartFrame; }
 
   38    int endFrame()
 const { 
return mEndFrame; }
 
   39    bool transparency()
 const { 
return mTransparency; }
 
   51    bool mTransparency = 
false;