added contributed libebus datatypes

This commit is contained in:
john30
2016-10-16 09:45:24 +02:00
parent 9800464f79
commit bba10f9f61
2 changed files with 36 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
AM_CXXFLAGS = -Wno-unused-parameter \
-isystem$(top_srcdir)/src/lib/ebus
noinst_LIBRARIES = libebuscontrib.a
libebuscontrib_a_SOURCES = contrib.h contrib.cpp tem.h tem.cpp
distclean-local:
-rm -f Makefile.in
-rm -rf .libs
+26
View File
@@ -0,0 +1,26 @@
/*
* ebusd - daemon for communication with eBUS heating systems.
* Copyright (C) 2016 John Baier <ebusd@ebusd.eu>
*
* 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 <http://www.gnu.org/licenses/>.
*/
#include "tem.h"
using namespace std;
bool libebus_contrib_register() {
contrib_tem_register();
return true;
}