diff options
author | Alexander Wilms <f.alexander.wilms@gmail.com> | 2014-02-25 18:36:00 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-27 07:34:29 -0600 |
commit | 15246c959ae5ab4e124859a4d8981676f9eb657f (patch) | |
tree | 87813888699be2b850201725c45564c8c6423262 /extensions/source/abpilot/datasourcehandling.hxx | |
parent | 710178094dfb21b0864335b1fa1a3401e4d82959 (diff) |
Remove visual noise from extensions
Change-Id: I0397d0d0e5343b7ed192a790664b068ac6955bd3
Reviewed-on: https://gerrit.libreoffice.org/8259
Tested-by: Caolán McNamara <caolanm@redhat.com>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'extensions/source/abpilot/datasourcehandling.hxx')
-rw-r--r-- | extensions/source/abpilot/datasourcehandling.hxx | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/extensions/source/abpilot/datasourcehandling.hxx b/extensions/source/abpilot/datasourcehandling.hxx index d77a626fbecc..c3f56c56f7a4 100644 --- a/extensions/source/abpilot/datasourcehandling.hxx +++ b/extensions/source/abpilot/datasourcehandling.hxx @@ -25,7 +25,7 @@ #include "abptypes.hxx" -//======================================================================== + namespace com { namespace sun { namespace star { namespace beans { class XPropertySet; @@ -35,14 +35,14 @@ namespace com { namespace sun { namespace star { class Window; -//......................................................................... + namespace abp { -//......................................................................... - //===================================================================== + + //= ODataSourceContext - //===================================================================== + struct ODataSourceContextImpl; class ODataSource; /// a non-UNO wrapper for the data source context @@ -97,9 +97,9 @@ namespace abp ODataSource createNewDBase( const OUString& _rName ) SAL_THROW (( )); }; - //===================================================================== + //= ODataSource - //===================================================================== + struct ODataSourceImpl; struct PackageAccessControl; /** a non-UNO wrapper for a data source @@ -114,9 +114,9 @@ namespace abp ODataSourceImpl* m_pImpl; public: - // ---------------------------------------------------------------- + // - ctor/dtor/assignment - // ---------------------------------------------------------------- + /// constructs an object which is initially invalid ODataSource( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& _rxORB @@ -131,11 +131,11 @@ namespace abp /// assignment ODataSource& operator=( const ODataSource& _rSource ); - // ---------------------------------------------------------------- + /// checks whether or not the object represents a valid data source sal_Bool isValid() const SAL_THROW (( )); - // ---------------------------------------------------------------- + /// removes the data source represented by the object from the data source context void remove() SAL_THROW (( )); // TODO: put this into the context class @@ -148,9 +148,9 @@ namespace abp sal_Bool rename( const OUString& _rName ) SAL_THROW (( )); // TODO: put this into the context class - // ---------------------------------------------------------------- + // - connection handling - // ---------------------------------------------------------------- + /** connects to the data source represented by this object @param _pMessageParent the window to use as parent for any error messages. If this is <NULL/>, no messages are displayed @@ -171,7 +171,7 @@ namespace abp /// register the data source under the given name in the configuration void registerDataSource( const OUString& _sRegisteredDataSourceName ) SAL_THROW (( )); - // ---------------------------------------------------------------- + /** retrieves the tables names from the connection <p>to be called when <method>isConnection</method> returns <TRUE/> only</p> */ @@ -185,7 +185,7 @@ namespace abp ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > getDataSource() const SAL_THROW (( )); - // ---------------------------------------------------------------- + /** set a new data source. <p>Available to selected clients only</p> */ @@ -199,9 +199,9 @@ namespace abp ODataSource( ); // never implemented }; -//......................................................................... + } // namespace abp -//......................................................................... + #endif // EXTENSIONS_ABP_DATASOURCEHANDLING_HXX |