-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
58 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
PROJECT_NAME = bibref | ||
PROJECT_NUMBER = 2023-12-17 | ||
PROJECT_BRIEF = A tool to find internal references in the Bible | ||
PROJECT_LOGO = logo-Psalm40-doxygen.png | ||
|
||
EXTRACT_ALL = YES | ||
EXTRACT_PRIVATE = YES | ||
|
||
HTML_OUTPUT = docs/html | ||
LATEX_OUTPUT = docs/latex |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/** | ||
* @file cli.h | ||
* Command line interface (CLI) related code. | ||
*/ | ||
|
||
void cli(const char *input_prepend, const char* output_prepend, bool addbooks, bool colored) { | ||
/** | ||
* @short Start the CLI. | ||
* Start the command line interface. | ||
* @param input_prepend Prepend a string before all input lines. | ||
* @param output_prepend Prepend a string before all output lines. | ||
* @param addbooks Load book databases immediately on startup. | ||
* @param colored Show all texts colored if possible. | ||
*/ | ||
} | ||
|
||
void add_vocabulary_item(string item) { | ||
/** | ||
* @short Adds item to the vocabulary. | ||
* Extend the vocabulary with an extra word. | ||
* It can be recalled by the usual readline shortcuts. | ||
* @param item Add this item to the vocabulary. | ||
*/ | ||
} | ||
|
||
void error(string message) { | ||
/** | ||
* @short Print an error. | ||
* Print an error message to standard error. | ||
* @param message The message to print. | ||
*/ | ||
} | ||
|
||
void info(string message) { | ||
/** | ||
* @short Print an info. | ||
* Prints an info message to standard out. | ||
* @param message The message to print. | ||
*/ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.