~bibledit/bibledit/ubuntu-cloud-beta

« back to all changes in this revision

Viewing changes to checks/versification.h

  • Committer: Teus Benschop
  • Date: 2022-10-14 16:03:26 UTC
  • Revision ID: teusjannette@gmail.com-20221014160326-42ybrpft4bblpruk
new upstream version

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
#include <config/libraries.h>
23
23
 
24
 
class Checks_Versification
25
 
{
26
 
public:
27
 
  static void books (string bible, vector <int> books);
28
 
  static void chapters (string bible, int book, vector <int> chapters);
29
 
  static void verses (string bible, int book, int chapter, vector <int> verses);
30
 
private:
31
 
};
 
24
namespace checks_versification {
 
25
 
 
26
void books (const string & bible, const vector <int> & books);
 
27
void chapters (const string & bible, int book, const vector <int> & chapters);
 
28
void verses (const string & bible, int book, int chapter, const vector <int> & verses);
 
29
 
 
30
}