mirror of
https://github.com/eclipse/upm.git
synced 2026-01-14 03:59:58 +03:00
To make room for UPM C and C++ sensor code to coexist, all UPM
C++ headers have been renamed from h -> hpp. This commit contains
updates to documentation, includes, cmake collateral, examples, and
swig interface files.
* Renamed all cxx/cpp header files which contain the string
'copyright intel' from .h -> .hpp (if not already hpp).
* Replaced all references to .h with .hpp in documentation,
source files, cmake collateral, example code, and swig interface
files.
* Replaced cmake variable module_h with module_hpp.
* Intentionally left upm.h since this file currently does not
contain code (documentation only).
Signed-off-by: Noel Eck <noel.eck@intel.com>
54 lines
565 B
OpenEdge ABL
54 lines
565 B
OpenEdge ABL
%module jsupm_gas
|
|
%include "../upm.i"
|
|
%include "../carrays_uint16_t.i"
|
|
|
|
%include "gas.hpp"
|
|
%{
|
|
#include "gas.hpp"
|
|
%}
|
|
|
|
%include "mq2.hpp"
|
|
%{
|
|
#include "mq2.hpp"
|
|
%}
|
|
|
|
%include "mq3.hpp"
|
|
%{
|
|
#include "mq3.hpp"
|
|
%}
|
|
|
|
%include "mq4.hpp"
|
|
%{
|
|
#include "mq4.hpp"
|
|
%}
|
|
|
|
%include "mq5.hpp"
|
|
%{
|
|
#include "mq5.hpp"
|
|
%}
|
|
|
|
%include "mq6.hpp"
|
|
%{
|
|
#include "mq6.hpp"
|
|
%}
|
|
|
|
%include "mq7.hpp"
|
|
%{
|
|
#include "mq7.hpp"
|
|
%}
|
|
|
|
%include "mq8.hpp"
|
|
%{
|
|
#include "mq8.hpp"
|
|
%}
|
|
|
|
%include "mq9.hpp"
|
|
%{
|
|
#include "mq9.hpp"
|
|
%}
|
|
|
|
%include "tp401.hpp"
|
|
%{
|
|
#include "tp401.hpp"
|
|
%}
|