dizgah
Member level 5
- Joined
- Nov 8, 2009
- Messages
- 91
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1,286
- Location
- iran-8par
- Activity points
- 2,049
hi every body
in a cpp file i include a header file and want to use header file's functions inside class but it shows a error:
---
error shows undefine symbol function_of_header1.h()
whas matter?
WBR
in a cpp file i include a header file and want to use header file's functions inside class but it shows a error:
Code:
lib1.h
class class_x{
public:
calss_x();
private:
}
Code:
lib1.cpp
#include "lib1.h"
#include "header1.h"
class_x::class_X()
{
function_of_header1.h();
}
whas matter?
WBR