home *** CD-ROM | disk | FTP | other *** search
- /*
- *--- PGetLinks.cpp -------------------------------------------------------
- * Copyright (c) 1995-96 Adobe Systems Incorporated. All rights reserved.
- * Created on Fri, Oct 13, 1995 @ 4:08 PM by Paul Ferguson.
- *
- * Description: For notes about this class, refer to the
- * PCL documentation file PGetLinks.html
- *-------------------------------------------------------------------------
- */
-
- #include "PGetLinks.h"
- #include "PReplyBuf.h"
-
- PGetLinks::PGetLinks()
- : PListQuery(pm_getlinks)
- {
- Scan();
- }
-
- void PGetLinks::Scan()
- {
- PReplyBuf reply(listMom.Current());
-
- reply >> &fFilename >> &sKind >> nPage;
-
- listMom.Update(reply);
- }
-
- // end of PGetLinks.cpp
-