Remove simplemail

This commit is contained in:
altffour 2019-12-05 19:48:42 +03:00
parent e4eaa84837
commit 2912045a1a
No known key found for this signature in database
GPG Key ID: 2E7B9E061AF66FC3
3 changed files with 18 additions and 0 deletions

View File

@ -2,3 +2,4 @@
rm -rf bin
rm -rf build
rm -rf lib

View File

@ -0,0 +1,14 @@
#ifndef NOTIFY_H
#define NOTIFY_H
#include <vector>
#include <string>
#include "contract.h"
#include "category.h"
#include "db.h"
auto notify_by_email(const DB &db) -> void {
}
#endif

View File

@ -5,6 +5,7 @@
#include "lib/db.h"
#include "lib/export.h"
#include "lib/import.h"
#include "lib/notify.h"
#include <iostream>
#include <fstream>
@ -31,6 +32,8 @@ int main(int argc, char *argv[]) {
std::cout << db2._categories[0]._name;
notify_by_email(db2);
QApplication a(argc, argv);
MainWindow w;
w.show();