1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
12 module com
{ module sun
{ module star
{ module ucb
{
14 /** contains information needed to checkin a document.
16 <p>The checkin command is always called on the target private
17 working copy document.</p>
19 struct CheckinArgument
21 /** Tells whether to create a new major or minor version during the
26 /** Contains the version comment to set during the checkin.
28 string VersionComment
;
30 /** contains the URL of the source of the action (e.g. the URL of
31 the temporary file to checkin).
35 /** contains the URL of the private working copy to checkin.
39 /** contains the title of the transferred object, if it is different
40 from the original one.
42 <p>If this field is filled, for example, a file will be renamed
43 while it is being checked in.</p>
47 /** contains the Mime-Type of the content to check-in as it may be
48 different from the original one.
56 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */