Refactor LTC File decoder, prepare for Lua bindings
[ardour.git] / libs / ardour / ardour / session_metadata.h
index c2ab947dfed26dfaa838ad1e58e9e3df85ff38e1..c0bfdb4003866bf32cbe40934c5913cd2160dc2f 100644 (file)
@@ -46,6 +46,8 @@ class LIBARDOUR_API SessionMetadata : public PBD::StatefulDestructible
        ~SessionMetadata ();
 
        /*** Accessing ***/
+       std::string description () const;
+
        std::string comment () const;
        std::string copyright () const;
        std::string isrc () const;
@@ -88,6 +90,7 @@ class LIBARDOUR_API SessionMetadata : public PBD::StatefulDestructible
        std::string country () const;
 
        /*** Editing ***/
+       void set_description (const std::string &);
        void set_comment (const std::string &);
        void set_copyright (const std::string &);
        void set_isrc (const std::string &);
@@ -136,7 +139,7 @@ class LIBARDOUR_API SessionMetadata : public PBD::StatefulDestructible
 
   private:
 
-       static SessionMetadata *_metadata;  //singleton instance 
+       static SessionMetadata *_metadata;  //singleton instance
 
        typedef std::pair<std::string, std::string> Property;
        typedef std::map<std::string, std::string> PropertyMap;