diff options
author | Oran Juice <oranjuices@hotmail.com> | 2014-10-02 21:35:27 +0530 |
---|---|---|
committer | Oran Juice <oranjuices@hotmail.com> | 2014-10-02 21:45:31 +0530 |
commit | d683c8c724b59b2e8d01dcb45698c44b08186813 (patch) | |
tree | f226453543492862a2c9cd15b18c0a5545f2397e /src/mnemonics/japanese.h | |
parent | Cut short word lists to 1626 words, added attribution to Electrum, some bug f... (diff) | |
download | monero-d683c8c724b59b2e8d01dcb45698c44b08186813.tar.xz |
Use reference types on LHS when using language methods
Diffstat (limited to 'src/mnemonics/japanese.h')
-rw-r--r-- | src/mnemonics/japanese.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/mnemonics/japanese.h b/src/mnemonics/japanese.h index 1c53a808e..2e77aa257 100644 --- a/src/mnemonics/japanese.h +++ b/src/mnemonics/japanese.h @@ -27,6 +27,12 @@ // STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
// THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+/*!
+ * \file japanese.h
+ *
+ * \brief Japanese word list and map.
+ */
+
#ifndef JAPANESE_H
#define JAPANESE_H
@@ -35,6 +41,10 @@ #include "language_base.h"
#include <string>
+/*!
+ * \namespace Language
+ * \brief Mnemonic language related namespace.
+ */
namespace Language
{
class Japanese: public Base
|