HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
STY_SourceLocation.h
Go to the documentation of this file.
1 /*
2  * PROPRIETARY INFORMATION. This software is proprietary to
3  * Side Effects Software Inc., and is not to be reproduced,
4  * transmitted, or disclosed in any way without written permission.
5  *
6  * NAME: STY_SourceLocation.h ( STY Library, C++)
7  *
8  * COMMENTS:
9  */
10 
11 #ifndef __STY_SourceLocation__
12 #define __STY_SourceLocation__
13 
14 #include "STY_API.h"
15 #include <UT/UT_StringHolder.h>
16 
17 /// Fully describes a stye sheet source location.
19 {
20 public:
22  : myLine(-1), myOffset(-1)
23  { }
24 
26  int myLine;
27  int myOffset;
28 };
29 
30 #endif
31 
UT_StringHolder myFile
Fully describes a stye sheet source location.