added new file typ "ResourcesDatabase", impoved code style

git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@1854 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
Tobias Doerffel
2008-11-28 12:32:17 +00:00
parent 1d235a4783
commit cb308e3d59
3 changed files with 28 additions and 22 deletions

View File

@@ -45,6 +45,7 @@ public:
ClipboardData,
JournalData,
EffectSettings,
ResourcesDatabase,
VideoProject, // might come later...
BurnProject, // might come later...
Playlist, // might come later...
@@ -64,16 +65,16 @@ public:
inline QDomElement & content( void )
{
return( m_content );
return m_content;
}
inline QDomElement & head( void )
{
return( m_head );
return m_head;
}
inline ProjectTypes type( void ) const
{
return( m_type );
return m_type;
}
static ProjectTypes typeOfFile( const QString & _fn );