michael@0: /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #include "nsISupports.idl" michael@0: michael@0: /** michael@0: * nsIPrintSession michael@0: * michael@0: * Stores data pertaining only to a single print job. This michael@0: * differs from nsIPrintSettings, which stores data which may michael@0: * be valid across a number of jobs. michael@0: * michael@0: * This interface is currently empty since, at this point, only michael@0: * platform-specific derived interfaces offer any functionality. michael@0: * It is here as a placeholder for when the printing session has michael@0: * XP functionality. michael@0: * michael@0: * The creation of a component which implements this interface michael@0: * will begin the session. Likewise, destruction of that object michael@0: * will end the session. michael@0: * michael@0: * @status michael@0: */ michael@0: michael@0: [uuid(2f977d52-5485-11d4-87e2-0010a4e75ef2)] michael@0: michael@0: interface nsIPrintSession : nsISupports michael@0: { michael@0: };