2014-06-25 03:19:39 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2014 Hamburg University of Applied Sciences (HAW)
|
|
|
|
* Copyright (C) 2014 Ho Chi Minh city University of Technology (HCMUT)
|
|
|
|
*
|
2014-08-23 15:43:13 +02:00
|
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
|
|
* directory for more details.
|
2014-06-25 03:19:39 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @defgroup
|
|
|
|
* @brief
|
|
|
|
* @ingroup examples
|
|
|
|
* @{
|
|
|
|
*
|
2015-05-22 07:34:41 +02:00
|
|
|
* @file
|
2014-06-25 03:19:39 +02:00
|
|
|
* @brief simple c++ object declaration with public and private functions
|
|
|
|
*
|
|
|
|
* @author Martin Landsmann <martin.landsmann@haw-hamburg.de>
|
|
|
|
* @author DangNhat Pham-Huu <51002279@stu.hcmut.edu.vn>
|
|
|
|
*/
|
|
|
|
|
2017-01-18 13:00:05 +01:00
|
|
|
#ifndef CPP_CLASS_H
|
|
|
|
#define CPP_CLASS_H
|
2014-06-25 03:19:39 +02:00
|
|
|
|
|
|
|
#include <cstdio>
|
|
|
|
|
|
|
|
class cpp_class
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* @brief constructor
|
|
|
|
*/
|
|
|
|
cpp_class();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief destructor
|
|
|
|
*/
|
|
|
|
~cpp_class();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief public function
|
|
|
|
*/
|
|
|
|
void say_hello(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief overloaded public function with int parameter
|
|
|
|
*/
|
|
|
|
void say_hello(int n);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief overloaded public function with float parameter
|
|
|
|
*/
|
|
|
|
void say_hello(float f);
|
|
|
|
private:
|
|
|
|
/**
|
|
|
|
* @brief private function
|
|
|
|
*/
|
|
|
|
void greet(void);
|
|
|
|
};
|
|
|
|
|
|
|
|
/** @} */
|
2017-01-18 15:07:35 +01:00
|
|
|
#endif /* CPP_CLASS_H */
|