* @brief Returns the frame parser source code from source 0. */
| 1058 | * @brief Returns the frame parser source code from source 0. |
| 1059 | */ |
| 1060 | QString DataModel::ProjectModel::frameParserCode() const |
| 1061 | { |
| 1062 | if (m_sources.empty()) |
| 1063 | return QString(); |
| 1064 | |
| 1065 | return m_sources[0].frameParserCode; |
| 1066 | } |
| 1067 | |
| 1068 | /** |
| 1069 | * @brief Returns the scripting language for the global frame parser (source 0). |
no test coverage detected