| 33 |
const char* pubmed::getTitle( ) const { return title; } |
const char* pubmed::getTitle( ) const { return title; } |
| 34 |
const char* pubmed::getAuthor( ) const { return author; } |
const char* pubmed::getAuthor( ) const { return author; } |
| 35 |
const char* pubmed::getJournal( ) const { return journal; } |
const char* pubmed::getJournal( ) const { return journal; } |
| 36 |
int pubmed::getPubYear( ) const { return pub_year; } |
int pubmed::getYearOfPublication( ) const { return pub_year; } |
| 37 |
int pubmed::getVolume( ) const { return volume; } |
int pubmed::getVolume( ) const { return volume; } |
| 38 |
int pubmed::getNumber( ) const { return number; } |
int pubmed::getNumber( ) const { return number; } |
| 39 |
const char* pubmed::getPage( ) const { return page; } |
const char* pubmed::getPage( ) const { return page; } |
| 43 |
void pubmed::setTitle( const char* x ){ setValue( &this -> title, x ); } |
void pubmed::setTitle( const char* x ){ setValue( &this -> title, x ); } |
| 44 |
void pubmed::setAuthor( const char* x ){ setValue( &this -> author, x ); } |
void pubmed::setAuthor( const char* x ){ setValue( &this -> author, x ); } |
| 45 |
void pubmed::setJournal( const char* x ){ setValue( &this -> journal, x ); } |
void pubmed::setJournal( const char* x ){ setValue( &this -> journal, x ); } |
| 46 |
void pubmed::setPubYear( int x ){ this -> pub_year = x; } |
void pubmed::setYearOfPublication( int x ){ this -> pub_year = x; } |
| 47 |
void pubmed::setVolume( int x ){ this -> volume = x; } |
void pubmed::setVolume( int x ){ this -> volume = x; } |
| 48 |
void pubmed::setNumber( int x ){ this -> number = x; } |
void pubmed::setNumber( int x ){ this -> number = x; } |
| 49 |
void pubmed::setPage( const char* x ){ setValue( &this -> page, x ); } |
void pubmed::setPage( const char* x ){ setValue( &this -> page, x ); } |