O
OzgurGul
int main(){
/*
I have a function and I want to use it but I dunno how to call
it... (I have trouble that pointers)
please help me...
mmm... thanks for all advance!!
*/
return 0;
}
class MyClass {
....
....
public:
....
/**
* Breaks the given file name up to directory, name, and extension.
* @param fname The file name.
* @param dir Variable to receive the newly allocated directory
string.
* @param name Variable to receive the newly allocated name string.
* @param ext Variable to receive the newly allocated extension
string.
*/
virtual void parseFilename(const char* fname,
char** dir,
char** name,
char** ext);
....
....
}
/*
I have a function and I want to use it but I dunno how to call
it... (I have trouble that pointers)
please help me...
mmm... thanks for all advance!!
*/
return 0;
}
class MyClass {
....
....
public:
....
/**
* Breaks the given file name up to directory, name, and extension.
* @param fname The file name.
* @param dir Variable to receive the newly allocated directory
string.
* @param name Variable to receive the newly allocated name string.
* @param ext Variable to receive the newly allocated extension
string.
*/
virtual void parseFilename(const char* fname,
char** dir,
char** name,
char** ext);
....
....
}