Remove empty MIDI regions which result from recordings made when no MIDI data is...
[ardour.git] / libs / ardour / ardour / session_metadata.h
index 2163a3dfef8900c6bf7baa92855d0b7d44570e43..481e21c338e8aea62e49901b5e3f9cabdb05aec8 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2008 Paul Davis 
+    Copyright (C) 2008 Paul Davis
     Author: Sakari Bergen
 
     This program is free software; you can redistribute it and/or modify it
 #include <map>
 #include <utility>
 
-#include <pbd/statefuldestructible.h>
-#include <pbd/xml++.h>
+#include "pbd/statefuldestructible.h"
+#include "pbd/xml++.h"
 
 namespace ARDOUR {
 
-using std::string;
-using Glib::ustring;
-
 /** Represents metadata associated to a Session
  * Metadata can be accessed and edited via this class.
  * Exported files can also be tagged with this data.
@@ -43,88 +40,88 @@ class SessionMetadata : public PBD::StatefulDestructible
   public:
        SessionMetadata ();
        ~SessionMetadata ();
-       
+
        /*** Accessing ***/
-       ustring comment () const;
-       ustring copyright () const;
-       ustring isrc () const;
+       Glib::ustring comment () const;
+       Glib::ustring copyright () const;
+       Glib::ustring isrc () const;
        uint32_t year () const;
 
-       ustring grouping () const;
-       ustring title () const;
-       ustring subtitle () const;
-       
-       ustring artist () const;
-       ustring album_artist () const;
-       ustring lyricist () const;
-       ustring composer () const;
-       ustring conductor () const;
-       ustring remixer () const;
-       ustring arranger () const;
-       ustring engineer () const;
-       ustring producer () const;
-       ustring dj_mixer () const;
-       ustring mixer () const;
-       
-       ustring album () const;
-       ustring compilation () const;
-       ustring disc_subtitle () const;
+       Glib::ustring grouping () const;
+       Glib::ustring title () const;
+       Glib::ustring subtitle () const;
+
+       Glib::ustring artist () const;
+       Glib::ustring album_artist () const;
+       Glib::ustring lyricist () const;
+       Glib::ustring composer () const;
+       Glib::ustring conductor () const;
+       Glib::ustring remixer () const;
+       Glib::ustring arranger () const;
+       Glib::ustring engineer () const;
+       Glib::ustring producer () const;
+       Glib::ustring dj_mixer () const;
+       Glib::ustring mixer () const;
+
+       Glib::ustring album () const;
+       Glib::ustring compilation () const;
+       Glib::ustring disc_subtitle () const;
        uint32_t disc_number () const;
        uint32_t total_discs () const;
        uint32_t track_number () const;
        uint32_t total_tracks () const;
-       
-       ustring genre () const;
-       
+
+       Glib::ustring genre () const;
+
        /*** Editing ***/
-       void set_comment (const ustring &);
-       void set_copyright (const ustring &);
-       void set_isrc (const ustring &);
+       void set_comment (const Glib::ustring &);
+       void set_copyright (const Glib::ustring &);
+       void set_isrc (const Glib::ustring &);
        void set_year (uint32_t);
-       
-       void set_grouping (const ustring &);
-       void set_title (const ustring &);
-       void set_subtitle (const ustring &);
-       
-       void set_artist (const ustring &);
-       void set_album_artist (const ustring &);
-       void set_lyricist (const ustring &);
-       void set_composer (const ustring &);
-       void set_conductor (const ustring &);
-       void set_remixer (const ustring &);
-       void set_arranger (const ustring &);
-       void set_engineer (const ustring &);
-       void set_producer (const ustring &);
-       void set_dj_mixer (const ustring &);
-       void set_mixer (const ustring &);
-       
-       void set_album (const ustring &);
-       void set_compilation (const ustring &);
-       void set_disc_subtitle (const ustring &);
+
+       void set_grouping (const Glib::ustring &);
+       void set_title (const Glib::ustring &);
+       void set_subtitle (const Glib::ustring &);
+
+       void set_artist (const Glib::ustring &);
+       void set_album_artist (const Glib::ustring &);
+       void set_lyricist (const Glib::ustring &);
+       void set_composer (const Glib::ustring &);
+       void set_conductor (const Glib::ustring &);
+       void set_remixer (const Glib::ustring &);
+       void set_arranger (const Glib::ustring &);
+       void set_engineer (const Glib::ustring &);
+       void set_producer (const Glib::ustring &);
+       void set_dj_mixer (const Glib::ustring &);
+       void set_mixer (const Glib::ustring &);
+
+       void set_album (const Glib::ustring &);
+       void set_compilation (const Glib::ustring &);
+       void set_disc_subtitle (const Glib::ustring &);
        void set_disc_number (uint32_t);
        void set_total_discs (uint32_t);
        void set_track_number (uint32_t);
        void set_total_tracks (uint32_t);
-       
-       void set_genre (const ustring &);
-       
+
+       void set_genre (const Glib::ustring &);
+
        /*** Serialization ***/
        XMLNode & get_state ();
-       int set_state (const XMLNode &);
+       int set_state (const XMLNode &, int version);
 
   private:
-       
-       typedef std::pair<ustring, ustring> Property;
-       typedef std::map<ustring, ustring> PropertyMap;
+
+       typedef std::pair<Glib::ustring, Glib::ustring> Property;
+       typedef std::map<Glib::ustring, Glib::ustring> PropertyMap;
        PropertyMap map;
 
-       XMLNode * get_xml (const ustring & name);
-       
-       ustring get_value (const ustring & name) const;
-       uint32_t get_uint_value (const ustring & name) const;
-       
-       void set_value (const ustring & name, const ustring & value);
-       void set_value (const ustring & name, uint32_t value);
+       XMLNode * get_xml (const Glib::ustring & name);
+
+       Glib::ustring get_value (const Glib::ustring & name) const;
+       uint32_t get_uint_value (const Glib::ustring & name) const;
+
+       void set_value (const Glib::ustring & name, const Glib::ustring & value);
+       void set_value (const Glib::ustring & name, uint32_t value);
 };
 
 } // namespace ARDOUR