diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-08-21 01:13:24 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-08-21 01:13:24 +0100 |
| commit | 8409171ec7d749a2426cca57cf6edd6714dc497d (patch) | |
| tree | e20fd664c31b0a52e7fc60bdfd60f38639accd06 /src/xml.cc | |
| parent | 4d91615b49a3246654baaf7a08f10f303b79b85a (diff) | |
De-hackify subtitle handling a bit.
Diffstat (limited to 'src/xml.cc')
| -rw-r--r-- | src/xml.cc | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -157,6 +157,12 @@ XMLNode::float_attribute (string name) return lexical_cast<float> (string_attribute (name)); } +int64_t +XMLNode::int64_attribute (string name) +{ + return lexical_cast<int64_t> (string_attribute (name)); +} + void XMLNode::done () { |
