mirror of
https://github.com/eclipse/upm.git
synced 2025-07-29 23:21:01 +03:00
cpp_headers: Renamed C++ headers from .h -> .hpp
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>
This commit is contained in:
@@ -6,52 +6,52 @@
|
||||
|
||||
%feature("autodoc", "3");
|
||||
|
||||
%include "gas.h"
|
||||
%include "gas.hpp"
|
||||
%{
|
||||
#include "gas.h"
|
||||
#include "gas.hpp"
|
||||
%}
|
||||
|
||||
%include "mq2.h"
|
||||
%include "mq2.hpp"
|
||||
%{
|
||||
#include "mq2.h"
|
||||
#include "mq2.hpp"
|
||||
%}
|
||||
|
||||
%include "mq3.h"
|
||||
%include "mq3.hpp"
|
||||
%{
|
||||
#include "mq3.h"
|
||||
#include "mq3.hpp"
|
||||
%}
|
||||
|
||||
%include "mq4.h"
|
||||
%include "mq4.hpp"
|
||||
%{
|
||||
#include "mq4.h"
|
||||
#include "mq4.hpp"
|
||||
%}
|
||||
|
||||
%include "mq5.h"
|
||||
%include "mq5.hpp"
|
||||
%{
|
||||
#include "mq5.h"
|
||||
#include "mq5.hpp"
|
||||
%}
|
||||
|
||||
%include "mq6.h"
|
||||
%include "mq6.hpp"
|
||||
%{
|
||||
#include "mq6.h"
|
||||
#include "mq6.hpp"
|
||||
%}
|
||||
|
||||
%include "mq7.h"
|
||||
%include "mq7.hpp"
|
||||
%{
|
||||
#include "mq7.h"
|
||||
#include "mq7.hpp"
|
||||
%}
|
||||
|
||||
%include "mq8.h"
|
||||
%include "mq8.hpp"
|
||||
%{
|
||||
#include "mq8.h"
|
||||
#include "mq8.hpp"
|
||||
%}
|
||||
|
||||
%include "mq9.h"
|
||||
%include "mq9.hpp"
|
||||
%{
|
||||
#include "mq9.h"
|
||||
#include "mq9.hpp"
|
||||
%}
|
||||
|
||||
%include "tp401.h"
|
||||
%include "tp401.hpp"
|
||||
%{
|
||||
#include "tp401.h"
|
||||
#include "tp401.hpp"
|
||||
%}
|
||||
|
Reference in New Issue
Block a user