home *** CD-ROM | disk | FTP | other *** search
- /*
- *--- PClose.cpp ----------------------------------------------------------
- * Copyright (c) 1995-96 Adobe Systems Incorporated. All rights reserved.
- * Created on Sun, Oct 22, 1995 @ 4:08 PM by Paul Ferguson.
- *
- * Description: For notes about this class, refer to the
- * PCL documentation file PClose.html
- *-------------------------------------------------------------------------
- */
-
- #include "PClose.h"
- #include "PCommand.h"
-
- PClose::PClose()
- {
- PCommand command(pm_close, (short) 0);
- }
-
- PClose::PClose(const char * sPubName)
- {
- PCommand command(pm_close, sPubName);
- }
-
- // end of PClose.cpp
-