~ubuntu-branches/ubuntu/trusty/hugin/trusty-proposed

« back to all changes in this revision

Viewing changes to src/hugin1/ptbatcher/ProjectArray.h

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Metzler
  • Date: 2011-01-06 14:28:24 UTC
  • mfrom: (1.1.9 upstream) (0.1.21 experimental)
  • Revision ID: james.westby@ubuntu.com-20110106142824-zn9lxylg5z44dynn
* Drop Cyril Brulebois from Uploaders. Thank you very much for your work.
* Bump package version. (rc3 was re-released as 2010.4.0).

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
                MISSING,
52
52
                PAUSED
53
53
        };
 
54
    enum Target{
 
55
        STITCHING=0,
 
56
        DETECTING
 
57
    };
54
58
 
55
59
        //generator for unique ids of projects
56
60
        static long idGenerator;
58
62
        long id;
59
63
        //project status
60
64
        Status status;
 
65
    //project target: stitching or detecting/assistant
 
66
    Target target;
61
67
        //project input path
62
68
        wxString path;
63
69
        //project output prefix path and filename
70
76
        bool skip;
71
77
 
72
78
        //Constructor for project files
73
 
        Project(wxString pth,wxString pfx);
 
79
        Project(wxString pth,wxString pfx,Project::Target newTarget=STITCHING);
74
80
        //Constructor for applications
75
81
        Project(wxString command);
76
82
        //Returns status of project in string form