From: Uwe Hermann Date: Sat, 29 Dec 2018 16:08:59 +0000 (+0100) Subject: Add an Srf namespace and an empty Srf::init(). X-Git-Url: https://sigrok.org/gitweb/?a=commitdiff_plain;h=b903bb0a1cd93d39195e812317e20e353b6d1ea8;hp=8440dc4f65d3b940c2f99943f10d68711ed74919;p=libsigrokflow.git Add an Srf namespace and an empty Srf::init(). --- diff --git a/include/libsigrokflow/libsigrokflow.hpp b/include/libsigrokflow/libsigrokflow.hpp index 5cc17b5..381c46b 100644 --- a/include/libsigrokflow/libsigrokflow.hpp +++ b/include/libsigrokflow/libsigrokflow.hpp @@ -20,4 +20,11 @@ #ifndef LIBSIGROKFLOW_LIBSIGROKFLOW_HPP #define LIBSIGROKFLOW_LIBSIGROKFLOW_HPP +namespace Srf +{ + +void init(); + +} + #endif diff --git a/src/main.cpp b/src/main.cpp index e3decf5..96d720e 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -20,3 +20,11 @@ #include #include +namespace Srf +{ + +void init() +{ +} + +}