~bibledit/bibledit/ubuntu-cloud

« back to all changes in this revision

Viewing changes to filter/passage.h

  • Committer: Teus Benschop
  • Date: 2022-08-30 18:42:32 UTC
  • Revision ID: teusjannette@gmail.com-20220830184232-a5bf5fkj14cqdx01
new upstream version

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
{
26
26
public:
27
27
  Passage ();
28
 
  Passage (string bible_in, int book_in, int chapter_in, string verse_in);
29
 
  string bible;
30
 
  int book;
31
 
  int chapter;
32
 
  string verse;
 
28
  Passage (string bible, int book, int chapter, string verse);
 
29
  string m_bible {};
 
30
  int m_book {};
 
31
  int m_chapter {};
 
32
  string m_verse {};
33
33
  bool equal (Passage & passage);
34
34
  string encode ();
35
35
  static Passage decode (const string& encoded);