InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
IOutlineInfo.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: Jack Kirstein
6 //
7 // $Author$
8 //
9 // $DateTime$
10 //
11 // $Revision$
12 //
13 // $Change$
14 //
15 // Copyright 1997-2010 Adobe Systems Incorporated. All rights reserved.
16 //
17 // NOTICE: Adobe permits you to use, modify, and distribute this file in accordance
18 // with the terms of the Adobe license agreement accompanying it. If you have received
19 // this file from a source other than Adobe, then your use, modification, or
20 // distribution of it requires the prior written permission of Adobe.
21 //
22 //========================================================================================
23 
24 #ifndef __IOutlineInfo__
25 #define __IOutlineInfo__
26 #include "PMReal.h"
27 
47 {
48  public:
52  virtual void BeginPath() = 0;
53 
57  virtual void EndPath() = 0;
58 
65  virtual void moveto(const PMReal& x, const PMReal& y) = 0;
66 
75  virtual void lineto(const PMReal& x, const PMReal& y) = 0;
76 
92  virtual void curveto(const PMReal& x1, const PMReal& y1, const PMReal& x2, const PMReal& y2, const PMReal& x3, const PMReal& y3) = 0;
93 
104  virtual void closepath() = 0;
105 };
106 
107 #endif