css_token.h
1 /*
2 ** ClanLib SDK
3 ** Copyright (c) 1997-2013 The ClanLib Team
4 **
5 ** This software is provided 'as-is', without any express or implied
6 ** warranty. In no event will the authors be held liable for any damages
7 ** arising from the use of this software.
8 **
9 ** Permission is granted to anyone to use this software for any purpose,
10 ** including commercial applications, and to alter it and redistribute it
11 ** freely, subject to the following restrictions:
12 **
13 ** 1. The origin of this software must not be misrepresented; you must not
14 ** claim that you wrote the original software. If you use this software
15 ** in a product, an acknowledgment in the product documentation would be
16 ** appreciated but is not required.
17 ** 2. Altered source versions must be plainly marked as such, and must not be
18 ** misrepresented as being the original software.
19 ** 3. This notice may not be removed or altered from any source distribution.
20 **
21 ** Note: Some of the libraries ClanLib may link to may have additional
22 ** requirements or restrictions.
23 **
24 ** File Author(s):
25 **
26 ** Magnus Norddahl
27 */
28 
29 
30 #pragma once
31 
32 namespace clan
33 {
36 
40 class CSSToken
41 {
44 public:
48 
51 public:
52  enum Type
53  {
81  };
82 
84  std::string value;
85  std::string dimension;
87 };
88 
90 }
Definition: css_token.h:69
Definition: css_token.h:66
Definition: css_token.h:75
Definition: css_token.h:57
Definition: css_token.h:77
Definition: css_token.h:79
Definition: css_token.h:55
Definition: css_token.h:65
Definition: css_token.h:62
CSS token.
Definition: css_token.h:40
Definition: css_token.h:54
Definition: css_token.h:68
Definition: css_token.h:80
Definition: css_token.h:74
Type type
Definition: css_token.h:83
Definition: css_token.h:59
Definition: css_token.h:56
Definition: css_token.h:64
Definition: css_token.h:67
std::string value
Definition: css_token.h:84
CSSToken()
Constructs a null token.
Definition: css_token.h:46
Type
Definition: css_token.h:52
Definition: css_token.h:72
Definition: css_token.h:78
Definition: css_token.h:70
std::string dimension
Definition: css_token.h:85
Definition: css_token.h:63
Definition: css_token.h:58
Definition: css_token.h:76
Definition: css_token.h:71
Definition: css_token.h:60
Definition: css_token.h:61