Revision c393c256
Added by david.sorber 8 months ago
| src/Catalog.cc | ||
|---|---|---|
|
#include <fstream>
|
||
|
#include <iostream>
|
||
|
#include <sstream>
|
||
|
#include <stdexcept>
|
||
|
|
||
|
#include <sodium.h>
|
||
|
|
||
| ... | ... | |
|
{
|
||
|
if (sodium_init() != 0)
|
||
|
{
|
||
|
// TODO: throw exception here
|
||
|
// return 1;
|
||
|
throw std::runtime_error("libsodium init error!");
|
||
|
}
|
||
|
}
|
||
|
|
||
Revamp display widgets. Use a listbox on the left panel and a multiline
text box in the main right panel. Bump version to 0.2.0.