#include <marDictionary.h>
Public Member Functions | |
| marDictFrase (int id, char *frase) | |
| ~marDictFrase () | |
| int | GetIdFrase () |
| char * | GetFrase () |
Private Attributes | |
| int | _idfrase |
| char * | _frase |
Definition at line 9 of file marDictionary.h.
| marDictFrase::marDictFrase | ( | int | id, | |
| char * | frase | |||
| ) |
| marDictFrase::~marDictFrase | ( | ) |
Definition at line 18 of file marDictionary.cxx.
References _frase.
00018 { 00019 free(_frase); 00020 }
| char * marDictFrase::GetFrase | ( | ) |
Definition at line 28 of file marDictionary.cxx.
References _frase.
Referenced by marDictionary::GetString().
00028 { 00029 return _frase; 00030 }

| int marDictFrase::GetIdFrase | ( | ) |
Definition at line 23 of file marDictionary.cxx.
References _idfrase.
Referenced by marDictionary::GetString().
00023 { 00024 return _idfrase; 00025 }

char* marDictFrase::_frase [private] |
Definition at line 17 of file marDictionary.h.
Referenced by GetFrase(), marDictFrase(), and ~marDictFrase().
int marDictFrase::_idfrase [private] |
Definition at line 16 of file marDictionary.h.
Referenced by GetIdFrase(), and marDictFrase().
1.6.1