summaryrefslogtreecommitdiff
path: root/dbaccess/source/core/misc/veto.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'dbaccess/source/core/misc/veto.cxx')
-rw-r--r--dbaccess/source/core/misc/veto.cxx12
1 files changed, 1 insertions, 11 deletions
diff --git a/dbaccess/source/core/misc/veto.cxx b/dbaccess/source/core/misc/veto.cxx
index 732f924a2b7a..7b994728b747 100644
--- a/dbaccess/source/core/misc/veto.cxx
+++ b/dbaccess/source/core/misc/veto.cxx
@@ -19,43 +19,33 @@
#include "veto.hxx"
-//........................................................................
namespace dbaccess
{
-//........................................................................
using ::com::sun::star::uno::Any;
using ::com::sun::star::uno::RuntimeException;
- //====================================================================
- //= Veto
- //====================================================================
- //--------------------------------------------------------------------
+ // Veto
Veto::Veto( const OUString& _rReason, const Any& _rDetails )
:m_sReason( _rReason )
,m_aDetails( _rDetails )
{
}
- //--------------------------------------------------------------------
Veto::~Veto()
{
}
- //--------------------------------------------------------------------
OUString SAL_CALL Veto::getReason() throw (RuntimeException)
{
return m_sReason;
}
- //--------------------------------------------------------------------
Any SAL_CALL Veto::getDetails() throw (RuntimeException)
{
return m_aDetails;
}
-//........................................................................
} // namespace dbaccess
-//........................................................................
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */