homescreenapp/inc/hsapp_defs.inl
changeset 39 4e8ebe173323
parent 36 cdae8c6c3876
child 51 4785f57bf3d4
--- a/homescreenapp/inc/hsapp_defs.inl	Fri Apr 16 14:54:01 2010 +0300
+++ b/homescreenapp/inc/hsapp_defs.inl	Mon May 03 12:24:59 2010 +0300
@@ -226,4 +226,50 @@
     return name;
 }
 
+/*!
+    \return sw type key
+*/
+inline const QString swTypeKey()
+{
+    static const QString key("apptype");
+    return key;
+}
+
+/*!
+    \return package entry type name
+*/
+inline const QString packageTypeName()
+{
+    static const QString name("package");
+    return name;
+}
+
+/*!
+    \return java sw type
+*/
+inline const QString javaSwType()
+{
+    static const QString value("java");
+    return value;
+}
+
+/*!
+    \return application settings plugin
+*/
+inline const QString appSettingsPlugin()
+{
+    static const QString key("app_settings_plugin");
+    return key;
+}
+
+/*!
+    \return application group name
+*/
+inline const QString groupNameAttributeName()
+{
+    static const QString key("appgroup_name");
+    return key;
+}
+
+
 #endif