summaryrefslogtreecommitdiff
path: root/src/currency.c
blob: 312e6618f828523fe07143423df0e5805442a2e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/*
 * Copyright (C) 2008-2011 Robert Ancell.
 *
 * This program is free software: you can redistribute it and/or modify it under
 * the terms of the GNU General Public License as published by the Free Software
 * Foundation, either version 2 of the License, or (at your option) any later
 * version. See http://www.gnu.org/copyleft/gpl.html the full text of the
 * license.
 */

#include <string.h>
#include <stdarg.h>

#include "currency.h"
#include "mp-serializer.h"
#include "currency-manager.h" // FIXME: Move out of here

struct CurrencyPrivate
{
    gchar *name;
    gchar *display_name;
    gchar *symbol;
    MPNumber value;
};

G_DEFINE_TYPE_WITH_PRIVATE (Currency, currency, G_TYPE_OBJECT);


Currency *
currency_new(const gchar *name,
             const gchar *display_name,
             const gchar *symbol)
{
    Currency *currency = g_object_new(currency_get_type(), NULL);

    currency->priv->name = g_strdup(name);
    currency->priv->display_name = g_strdup(display_name);
    currency->priv->symbol = g_strdup(symbol);

    return currency;
}


const gchar *
currency_get_name(Currency *currency)
{
    g_return_val_if_fail (currency != NULL, NULL);
    return currency->priv->name;
}


const gchar *
currency_get_display_name(Currency *currency)
{
    g_return_val_if_fail (currency != NULL, NULL);
    return currency->priv->display_name;
}


const gchar *
currency_get_symbol(Currency *currency)
{
    g_return_val_if_fail (currency != NULL, NULL);
    return currency->priv->symbol;
}


void
currency_set_value(Currency *currency, MPNumber *value)
{
    g_return_if_fail (currency != NULL);
    g_return_if_fail (value != NULL);
    mp_set_from_mp (value, &currency->priv->value);
}


const MPNumber *
currency_get_value(Currency *currency)
{
    g_return_val_if_fail (currency != NULL, NULL);
    return &currency->priv->value;
}


static void
currency_class_init(CurrencyClass *klass)
{
}


static void
currency_init(Currency *currency)
{
    currency->priv = currency_get_instance_private (currency);
}