qtmobility/src/contacts/qcontactabstractrequest.h
changeset 4 90517678cc4f
parent 1 2b40d63a9c3d
child 5 453da2cfceef
equal deleted inserted replaced
1:2b40d63a9c3d 4:90517678cc4f
    53 {
    53 {
    54     Q_OBJECT
    54     Q_OBJECT
    55 
    55 
    56 public:
    56 public:
    57     QContactAbstractRequest() {}
    57     QContactAbstractRequest() {}
    58     virtual ~QContactAbstractRequest();
    58     ~QContactAbstractRequest();
    59 
    59 
    60     QList<QContactManager::Error> Q_DECL_DEPRECATED errors() const; // deprecated, removed in week 3.  see leaf classes for detailed error reporting.
       
    61     enum State {
    60     enum State {
    62         InactiveState = 0,   // operation not yet started
    61         InactiveState = 0,   // operation not yet started
    63         ActiveState,         // operation started, not yet finished
    62         ActiveState,         // operation started, not yet finished
    64         CanceledState,       // operation is finished due to cancellation
    63         CanceledState,       // operation is finished due to cancellation
    65         FinishedState        // operation either completed successfully or failed.  No further results will become available.
    64         FinishedState        // operation either completed successfully or failed.  No further results will become available.