|
Babel
1
The voip software that only works on your local network
|
Main entry point for the program. More...
#include "Logging.hpp"#include "Network.hpp"#include "Controls.hpp"#include "Constants.hpp"#include "BootScreen.hpp"#include "Audio/Audio.hpp"#include "Compressor/Manager.hpp"
Go to the source code of this file.
Functions | |
| const unsigned int | stringToUnsignedInt (const std::string &str, const unsigned int defaultValue=0) |
| Converts a string to an unsigned integer. | |
| int | main (int argc, char **argv) |
| Main function of the program. | |
Main entry point for the program.
This file contains the main function which initializes the program, processes command-line arguments, and starts the main loop for sending or receiving audio data.
Definition in file main.cpp.
| int main | ( | int | argc, |
| char ** | argv ) |
Main function of the program.
This function initializes the program, processes command-line arguments, and starts the main loop for sending or receiving audio data.
| argc | Number of command-line arguments. |
| argv | Array of command-line arguments. |
| const unsigned int stringToUnsignedInt | ( | const std::string & | str, |
| const unsigned int | defaultValue = 0 ) |
Converts a string to an unsigned integer.
This function attempts to convert a string to an unsigned integer. If the conversion fails, it returns a default value.
| str | The string to convert. |
| defaultValue | The default value to return if conversion fails. |