~ubuntu-branches/ubuntu/vivid/gnote/vivid-proposed

« back to all changes in this revision

Viewing changes to src/notemanagerbase.hpp

  • Committer: Package Import Robot
  • Author(s): Vincent Cheng
  • Date: 2014-10-04 23:29:38 UTC
  • mfrom: (1.3.22)
  • Revision ID: package-import@ubuntu.com-20141004232938-ctmgoabfgfoz27ft
Tags: 3.14.0-1
* New upstream release.
* Update Standards version to 3.9.6, no changes required.

Show diffs side-by-side

added added

removed removed

Lines of Context:
103
103
  virtual NoteBase::Ptr create_new_note(const Glib::ustring & title, const Glib::ustring & xml_content, 
104
104
                                        const std::string & guid);
105
105
  virtual NoteBase::Ptr note_create_new(const Glib::ustring & title, const Glib::ustring & file_name) = 0;
106
 
  Glib::ustring make_new_file_name() const; //temp
107
 
  Glib::ustring make_new_file_name(const Glib::ustring & guid) const; //temp
 
106
  Glib::ustring make_new_file_name() const;
 
107
  Glib::ustring make_new_file_name(const Glib::ustring & guid) const;
108
108
  virtual NoteBase::Ptr note_load(const Glib::ustring & file_name) = 0;
109
109
 
110
110
  NoteBase::List m_notes;
111
111
  std::string m_start_note_uri;
112
 
  Glib::ustring m_backup_dir; //temp
113
 
  Glib::ustring m_default_note_template_title;  // temp
 
112
  Glib::ustring m_backup_dir;
 
113
  Glib::ustring m_default_note_template_title;
114
114
private:
115
115
  void create_notes_dir() const;
116
116
  bool create_directory(const Glib::ustring & directory) const;