cpp_class.cpp
1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*
* Copyright (C) 2014 Hamburg University of Applied Sciences (HAW)
* Copyright (C) 2014 Ho Chi Minh city University of Technology (HCMUT)
*
* 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.
*/
/**
* @ingroup examples
* @{
*
* @file
* @brief implementation of declared functions of object cpp_class
*
* @author Martin Landsmann <martin.landsmann@haw-hamburg.de>
* @author DangNhat Pham-Huu <51002279@hcmut.edu.vn>
*
* @}
*/
#include "cpp_class.hpp"
cpp_class::cpp_class()
{
printf("Instanciating Object [constructor called]\n");
greet();
}
cpp_class::~cpp_class()
{
printf("Destroying Object [destructor called]\n");
printf("Im shutting down!\n");
}
void cpp_class::say_hello(void)
{
printf("Hello!\n");
}
void cpp_class::say_hello(int n)
{
printf("Hello![int: %d]\n", n);
}
void cpp_class::say_hello(float f)
{
printf("Hello![float: %f]\n", f);
}
void cpp_class::greet(void)
{
printf("Im starting!\n");
}