#ifndef _Project_h #define _Project_h #include "Document.h" class Project { public: Project(); ~Project(); bool open(const Glib::ustring &filename); bool save(const Glib::ustring &filename); void clear(); Glib::ustring setNote(const Glib::ustring ¬e); Glib::ustring getNote(); protected: // filename project Glib::ustring m_filename; // subtitle Glib::ustring m_subtitleFile; // preview Glib::ustring m_fileMovie; // timing Glib::ustring m_fileMedia; // note for project Glib::ustring m_note; }; #endif//_Project_h