~ubuntu-branches/ubuntu/trusty/kdepimlibs/trusty

« back to all changes in this revision

Viewing changes to gpgme++/decryptionresult.h

  • Committer: Package Import Robot
  • Author(s): Rohan Garg, Rohan Garg, Philip Muškovac
  • Date: 2013-11-23 17:36:44 UTC
  • mfrom: (1.1.102)
  • Revision ID: package-import@ubuntu.com-20131123173644-p5ow94192ezsny8g
Tags: 4:4.11.80-0ubuntu1
[ Rohan Garg ]
* New upstream beta release
  - Bump akonadi requirement to 1.10.45
  - Update install files
  - Update symbols

[ Philip Muškovac ]
* kdepimlibs-dev/-dbg breaks/replaces kdepim-runtime/-dbg (<< 4:4.11.80)

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
    explicit DecryptionResult( const Error & err );
46
46
 
47
47
    const DecryptionResult & operator=( DecryptionResult other ) {
48
 
        swap( other );
49
 
        return *this;
 
48
        swap( other );
 
49
        return *this;
50
50
    }
51
51
 
52
52
    void swap( DecryptionResult & other ) {
53
 
        Result::swap( other );
54
 
        using std::swap;
55
 
        swap( this->d, other.d );
 
53
        Result::swap( other );
 
54
        using std::swap;
 
55
        swap( this->d, other.d );
56
56
    }
57
57
 
58
58
    bool isNull() const;
89
89
      explicit Recipient( gpgme_recipient_t reci );
90
90
 
91
91
      const Recipient & operator=( Recipient other ) {
92
 
          swap( other );
93
 
          return *this;
 
92
          swap( other );
 
93
          return *this;
94
94
      }
95
95
 
96
96
      void swap( Recipient & other ) {
97
 
          using std::swap;
98
 
          swap( this->d, other.d );
 
97
          using std::swap;
 
98
          swap( this->d, other.d );
99
99
      }
100
100
 
101
101
      bool isNull() const;