home *** CD-ROM | disk | FTP | other *** search
- /*
- *--- PTabs.h -------------------------------------------------------------
- * Copyright (c) 1995-96 Adobe Systems Incorporated. All rights reserved.
- * Created on Sun, Oct 22, 1995 @ 4:19 PM by Paul Ferguson.
- *
- * Description: This class is a little different than most other commands.
- * The class client must create a complete PRequestBuf object and pass it
- * into the constructor. Refer to the SDK Guide for information about the
- * format of the Tabs command parameters.
- *
- * The default constructor clears all tabs and resets the ruler to the
- * default settings.
- *-------------------------------------------------------------------------
- */
- #ifndef __PTabs__
- #define __PTabs__
-
- class PRequestBuf;
-
- class PTabs
- {
-
- public:
-
- PTabs();
- PTabs(PRequestBuf& theRequest);
- };
-
- #endif
-
- // end of PTabs.h
-