#include <card.h>

Public Member Functions | |
| Card () | |
| Default constructor. | |
| void | Init (int index, std::string symbol, std::string reading, std::string reading2, std::string translation, std::string example_symbol, std::string example_reading, std::string example_translation) |
| Initializer. | |
| std::string | symbol () const |
| Symbol/s of the card. | |
| std::string | reading () const |
| (First) reading of the symbol/s | |
| std::string | reading2 () const |
| Second reading of the symbol. | |
| std::string | translation () const |
| Translation of the symbol/s. | |
| std::string | example_symbol () const |
| Example of the symbol written with symbols. | |
| std::string | example_reading () const |
| Reading of the example. | |
| std::string | example_translation () const |
| Translation of the example. | |
| int | index () const |
| Index of the card in the package. Is in the range [1 - records]. | |
Private Attributes | |
| int | index_ |
| Index of the card in the package. Is in the range [1 - records]. | |
| std::string | symbol_ |
| Symbol/s of the card. | |
| std::string | reading_ |
| (First) reading of the symbol/s | |
| std::string | reading2_ |
| Second reading of the symbol. | |
| std::string | translation_ |
| Translation of the symbol/s. | |
| std::string | example_symbol_ |
| Example of the symbol written with symbols. | |
| std::string | example_reading_ |
| Reading of the example. | |
| std::string | example_translation_ |
| Translation of the example. | |
Definition at line 26 of file card.h.
1.5.8