| EggDBus Reference Manual | ||||
|---|---|---|---|---|
TestPair;
TestPair* test_pair_new (gint first,
gint second);
gint test_pair_get_first (TestPair *instance);
gint test_pair_get_second (TestPair *instance);
void test_pair_set_first (TestPair *instance,
gint value);
void test_pair_set_second (TestPair *instance,
gint value);
TestPair* test_pair_new (gint first, gint second);
Constructs a new TestPair.
first : |
The first element |
second : |
The second element |
| Returns : | A TestPair. |
gint test_pair_get_first (TestPair *instance);
Gets element 0 of the EggDBusStructure wrapped by TestPair.
instance : |
A TestPair. |
| Returns : | The first element |
gint test_pair_get_second (TestPair *instance);
Gets element 1 of the EggDBusStructure wrapped by TestPair.
instance : |
A TestPair. |
| Returns : | The second element |
void test_pair_set_first (TestPair *instance, gint value);
Sets element 0 of the EggDBusStructure wrapped by TestPair.
instance : |
A TestPair. |
value : |
The first element |
void test_pair_set_second (TestPair *instance, gint value);
Sets element 1 of the EggDBusStructure wrapped by TestPair.
instance : |
A TestPair. |
value : |
The second element |