~ubuntu-branches/ubuntu/trusty/libcmis/trusty

« back to all changes in this revision

Viewing changes to src/libcmis/ws-versioningservice.cxx

  • Committer: Package Import Robot
  • Author(s): Sebastien Bacher
  • Date: 2014-02-05 14:41:34 UTC
  • mfrom: (1.1.5) (2.1.6 experimental)
  • Revision ID: package-import@ubuntu.com-20140205144134-ffvov1moblfapn82
Tags: 0.4.1-3ubuntu1
* Resynchronize on Debian, remaining change:
* debian/patches/powerpc64le.diff: build on ppc64el

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
#include "ws-session.hxx"
32
32
 
33
33
using namespace std;
 
34
using libcmis::PropertyPtrMap;
34
35
 
35
36
VersioningService::VersioningService( WSSession* session ) :
36
37
    m_session( session ),
87
88
}
88
89
 
89
90
libcmis::DocumentPtr VersioningService::checkIn( string repoId, string objectId, bool isMajor,
90
 
        const map< string, libcmis::PropertyPtr >& properties,
 
91
        const PropertyPtrMap& properties,
91
92
        boost::shared_ptr< ostream > stream, string contentType, string fileName,
92
93
        string comment ) throw ( libcmis::Exception )
93
94
{