home *** CD-ROM | disk | FTP | other *** search
- /*
- *--- PStringListQuery.cpp ------------------------------------------------
- * Copyright (c) 1995-96 Adobe Systems Incorporated. All rights reserved.
- * Created on Thu, Oct 12, 1995 @ 10:00 PM by Paul Ferguson.
- *
- * Description: For notes about this class, refer to the
- * PCL documentation file PStringListQuery.html
- *-------------------------------------------------------------------------
- */
-
- #include "PStringListQuery.h"
- #include "PReplyBuf.h"
-
- PStringListQuery::PStringListQuery(ePMQuery query)
- : PListQuery(query)
- {
- Scan();
- }
-
- void PStringListQuery::Scan()
- {
- PReplyBuf reply(listMom.Current());
-
- reply >> &aString;
-
- listMom.Update(reply);
- }
-
- // end of PStringListQuery.cpp
-