summaryrefslogtreecommitdiff
path: root/tests/glibmm_date/main.cc
blob: 3272c8561b2e3631a408c044c9c697f28bf38f68 (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
#include <glibmm.h>
#include <iostream>

int main(int, char**)
{
  Glib::Date date;
  date.set_time_current();
  date.add_months(1);
  date.subtract_days(1);
  date.add_years(1);

  std::cout << "The date a year and a month from yesterday will be: " <<
    date.get_month() << "/" << (int) date.get_day() << "/" << date.get_year() <<
      "." << std::endl;


  Glib::Date copy_date(date);
  Glib::Date assigned_date;

  assigned_date = copy_date;

  std::cout << "The copied date is: " << copy_date.get_month() << "/" <<
    (int) copy_date.get_day() << "/" << copy_date.get_year() << "." <<
      std::endl;

  return 0;
}