2012-12-08 03:51:09 +01:00
|
|
|
// Copyright (c) 2012, Thomas Goyne <plorkyeran@aegisub.org>
|
2006-01-16 22:02:54 +01:00
|
|
|
//
|
2012-12-08 03:51:09 +01:00
|
|
|
// Permission to use, copy, modify, and distribute this software for any
|
|
|
|
// purpose with or without fee is hereby granted, provided that the above
|
|
|
|
// copyright notice and this permission notice appear in all copies.
|
2006-01-16 22:02:54 +01:00
|
|
|
//
|
2012-12-08 03:51:09 +01:00
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
// ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
2006-01-16 22:02:54 +01:00
|
|
|
//
|
2009-07-29 07:43:02 +02:00
|
|
|
// Aegisub Project http://www.aegisub.org/
|
|
|
|
|
|
|
|
/// @file ass_entry.cpp
|
|
|
|
/// @brief Superclass for different kinds of lines in subtitles
|
|
|
|
/// @ingroup subs_storage
|
|
|
|
///
|
2006-01-16 22:02:54 +01:00
|
|
|
|
|
|
|
#include "ass_entry.h"
|
2006-01-25 23:19:40 +01:00
|
|
|
|
2014-04-29 18:33:22 +02:00
|
|
|
std::string const& AssEntry::GroupHeader() const {
|
2013-01-04 16:01:50 +01:00
|
|
|
static std::string ass_headers[] = {
|
2012-11-25 01:08:29 +01:00
|
|
|
"[Script Info]",
|
2012-11-26 15:42:46 +01:00
|
|
|
"[V4+ Styles]",
|
2012-11-25 01:08:29 +01:00
|
|
|
"[Fonts]",
|
|
|
|
"[Graphics]",
|
2012-12-10 00:44:03 +01:00
|
|
|
"[Events]",
|
2014-04-22 19:21:00 +02:00
|
|
|
"[Aegisub Extradata]",
|
2012-11-25 01:08:29 +01:00
|
|
|
""
|
|
|
|
};
|
2014-04-29 18:33:22 +02:00
|
|
|
return ass_headers[(int)Group()];
|
2006-02-27 10:07:08 +01:00
|
|
|
}
|