#ifdef HAVE_CONFIG_H #include #endif #include "GEDCOMParser/DateManagement/DateValue.hh" #include #include "gettext.h" int main(int argc, char ** argv) { setlocale (LC_ALL, ""); bindtextdomain (PACKAGE, PACKAGE_LOCALE_DIR); textdomain (PACKAGE); GEDCOMParser::DateManagement::DateValue datevalue(argv[1]); std::cerr << "DATE VALUE : " << datevalue.getDisplayValue() << std::endl; return 0; }