X-Git-Url: http://developer.intra2net.com/git/?p=libt2n;a=blobdiff_plain;f=src%2Fcontainer.cpp;h=9b4eb4c182ba349e03ae2d95b74e229b479d22b2;hp=bff9bb34801f8e5b840ff7a4eac8d860969dba53;hb=a63e08b83794273da3840e0b8bf15bf0085fe3c4;hpb=7087e18783f91d2b889e880462d1d1da24831c28 diff --git a/src/container.cpp b/src/container.cpp index bff9bb3..9b4eb4c 100644 --- a/src/container.cpp +++ b/src/container.cpp @@ -1,23 +1,71 @@ -/*************************************************************************** - * Copyright (C) 2006 by Gerd v. Egidy * - * gve@intra2net.com * - * * - * This library is free software; you can redistribute it and/or modify * - * it under the terms of the GNU Lesser General Public License version * - * 2.1 as published by the Free Software Foundation. * - * * - * This library is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU Lesser General Public License for more details. * - * * - * You should have received a copy of the GNU Lesser General Public * - * License along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ +/* +Copyright (C) 2006 by Intra2net AG - Gerd v. Egidy + +The software in this package is distributed under the GNU General +Public License version 2 (with a special exception described below). + +A copy of GNU General Public License (GPL) is included in this distribution, +in the file COPYING.GPL. + +As a special exception, if other files instantiate templates or use macros +or inline functions from this file, or you compile this file and link it +with other works to produce a work based on this file, this file +does not by itself cause the resulting work to be covered +by the GNU General Public License. + +However the source code for this file must still be made available +in accordance with section (3) of the GNU General Public License. + +This exception does not invalidate any other reasons why a work based +on this file might be covered by the GNU General Public License. +*/ + +#include +#include +#include +#include #include "container.hxx" +#include + BOOST_CLASS_EXPORT(libt2n::result_container) BOOST_CLASS_EXPORT(libt2n::command_container) + +namespace libt2n +{ + + +/// deletes the carried result or exception objects +result_container::~result_container() +{ + if (res) + delete res; + if (ex) + delete ex; + + res = NULL; + ex = NULL; +} + +/** @brief returns the result or throw the carried exception. + ATTENTION: the result object is deleted in the destructor +*/ +result* result_container::get_result(void) +{ + if (result_type==exception) + ex->do_throw(); + + return res; +} + +/// deletes the carried command +command_container::~command_container() +{ + if (cmd) + delete cmd; + + cmd = NULL; +} + +} // namespace libt2n