renamed the cpp header file to *.hpp to preven eventually a collision with #1789

This commit is contained in:
BytesGalore 2014-10-10 11:27:36 +02:00
parent 42f96b0d60
commit 1f011eb1e9
3 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@
* @} * @}
*/ */
#include "cpp_class.h" #include "cpp_class.hpp"
cpp_class::cpp_class() cpp_class::cpp_class()
{ {

View File

@ -13,7 +13,7 @@
* @ingroup examples * @ingroup examples
* @{ * @{
* *
* @file cpp_class.h * @file cpp_class.hpp
* @brief simple c++ object declaration with public and private functions * @brief simple c++ object declaration with public and private functions
* *
* @author Martin Landsmann <martin.landsmann@haw-hamburg.de> * @author Martin Landsmann <martin.landsmann@haw-hamburg.de>

View File

@ -32,7 +32,7 @@ extern "C" {
#include <cstdio> #include <cstdio>
#include <vector> #include <vector>
#include "cpp_class.h" #include "cpp_class.hpp"
using namespace std; using namespace std;