diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2020-04-28 15:12:05 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2020-04-28 15:12:05 +0200 |
commit | 06a429d0148c94c35f3e4e226714299dc03af5eb (patch) | |
tree | 0cab2eaa230e6101f537c0e4d086ff5877cb800d /src/main.cpp | |
download | ODR-EDI2EDI-06a429d0148c94c35f3e4e226714299dc03af5eb.tar.gz ODR-EDI2EDI-06a429d0148c94c35f3e4e226714299dc03af5eb.tar.bz2 ODR-EDI2EDI-06a429d0148c94c35f3e4e226714299dc03af5eb.zip |
Initial commitv0.0.1
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp new file mode 100644 index 0000000..844908a --- /dev/null +++ b/src/main.cpp @@ -0,0 +1,31 @@ +/* + Copyright (C) 2020 + Matthias P. Braendli, matthias.braendli@mpb.li + + http://www.opendigitalradio.org + */ +/* + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see <https://www.gnu.org/licenses/>. + */ + +#include <iostream> +#include "Log.h" + +using namespace std; + +int main(int argc, char **argv) +{ + etiLog.level(info) << "Hello"; +} + |