summaryrefslogtreecommitdiff
path: root/src/text.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-01-27 12:27:06 +0000
committerCarl Hetherington <cth@carlh.net>2014-01-27 12:27:06 +0000
commite5d368553b47a566a83d4edce0a8f166db9509e6 (patch)
treedfdd9b9a82800ea30432c454dee77ac144269f58 /src/text.h
parent2cc2026701c9e8268ba154ec9330c5d56cbdc240 (diff)
More tidying.
Diffstat (limited to 'src/text.h')
-rw-r--r--src/text.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/text.h b/src/text.h
index bbb99adb..3a44965d 100644
--- a/src/text.h
+++ b/src/text.h
@@ -33,14 +33,18 @@ namespace dcp {
class Font;
+/** @class Text
+ * @brief Parser for Text nodes from subtitle XML.
+ */
class Text
{
public:
+ /** Construct a default text node */
Text ()
: v_position (0)
, v_align (TOP)
{}
-
+
Text (boost::shared_ptr<const cxml::Node> node);
float v_position;