From 2615896faa646e5830abf2c269150e1165c66515 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Fri, 18 Dec 2020 18:48:46 +0300 Subject: Switch to build2 --- libxsd/xsd/cxx/tree/date-time.txx | 92 --------------------------------------- 1 file changed, 92 deletions(-) delete mode 100644 libxsd/xsd/cxx/tree/date-time.txx (limited to 'libxsd/xsd/cxx/tree/date-time.txx') diff --git a/libxsd/xsd/cxx/tree/date-time.txx b/libxsd/xsd/cxx/tree/date-time.txx deleted file mode 100644 index dfa1ac7..0000000 --- a/libxsd/xsd/cxx/tree/date-time.txx +++ /dev/null @@ -1,92 +0,0 @@ -// file : xsd/cxx/tree/date-time.txx -// license : GNU GPL v2 + exceptions; see accompanying LICENSE file - -namespace xsd -{ - namespace cxx - { - namespace tree - { - // gday - // - template - gday* gday:: - _clone (flags f, container* c) const - { - return new gday (*this, f, c); - } - - // gmonth - // - template - gmonth* gmonth:: - _clone (flags f, container* c) const - { - return new gmonth (*this, f, c); - } - - // gyear - // - template - gyear* gyear:: - _clone (flags f, container* c) const - { - return new gyear (*this, f, c); - } - - // gmonth_day - // - template - gmonth_day* gmonth_day:: - _clone (flags f, container* c) const - { - return new gmonth_day (*this, f, c); - } - - // gyear_month - // - template - gyear_month* gyear_month:: - _clone (flags f, container* c) const - { - return new gyear_month (*this, f, c); - } - - // date - // - template - date* date:: - _clone (flags f, container* c) const - { - return new date (*this, f, c); - } - - // time - // - template - time* time:: - _clone (flags f, container* c) const - { - return new time (*this, f, c); - } - - // date_time - // - template - date_time* date_time:: - _clone (flags f, container* c) const - { - return new date_time (*this, f, c); - } - - // duration - // - template - duration* duration:: - _clone (flags f, container* c) const - { - return new duration (*this, f, c); - } - } - } -} -- cgit v1.1