summaryrefslogtreecommitdiff
path: root/source/dpsource.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'source/dpsource.cxx')
-rw-r--r--source/dpsource.cxx105
1 files changed, 104 insertions, 1 deletions
diff --git a/source/dpsource.cxx b/source/dpsource.cxx
index 875e43c..79e15ec 100644
--- a/source/dpsource.cxx
+++ b/source/dpsource.cxx
@@ -2,17 +2,120 @@
#include "dpsource.hxx"
+using ::com::sun::star::lang::IllegalArgumentException;
+using ::com::sun::star::uno::Any;
+using ::com::sun::star::uno::Reference;
+using ::com::sun::star::uno::Sequence;
+using ::com::sun::star::uno::RuntimeException;
+using ::com::sun::star::beans::PropertyVetoException;
+using ::com::sun::star::beans::UnknownPropertyException;
+using ::com::sun::star::beans::XPropertySetInfo;
+using ::com::sun::star::beans::XPropertyChangeListener;
+using ::com::sun::star::beans::XVetoableChangeListener;
+using ::com::sun::star::lang::WrappedTargetException;
+using ::com::sun::star::sheet::DataResult;
+using ::com::sun::star::sheet::DataPilotFieldFilter;
+using ::com::sun::star::container::XNameAccess;
+using ::com::sun::star::util::XRefreshListener;
+using ::rtl::OUString;
+
namespace dpsource {
SourceProvider::SourceProvider()
{
}
+SourceProvider::~SourceProvider()
+{
+}
+
+Reference<XPropertySetInfo> SourceProvider::getPropertySetInfo() throw (RuntimeException)
+{
+}
+
+void SourceProvider::setPropertyValue(const OUString& aPropertyName, const Any& aValue)
+ throw (UnknownPropertyException, PropertyVetoException, IllegalArgumentException, WrappedTargetException, RuntimeException)
+{
+}
+
+Any SourceProvider::getPropertyValue(const OUString& PropertyName)
+ throw (UnknownPropertyException, WrappedTargetException, RuntimeException)
+{
+}
+
+void SourceProvider::addPropertyChangeListener(
+ const OUString& aPropertyName, const Reference<XPropertyChangeListener>& xListener)
+ throw (UnknownPropertyException, WrappedTargetException, RuntimeException)
+{
+}
+void SourceProvider::removePropertyChangeListener(
+ const OUString& aPropertyName, const Reference<XPropertyChangeListener>& aListener)
+ throw (UnknownPropertyException, WrappedTargetException, RuntimeException)
+{
+}
+
+void SourceProvider::addVetoableChangeListener(
+ const OUString& PropertyName, const Reference< XVetoableChangeListener >& aListener)
+ throw (UnknownPropertyException, WrappedTargetException, RuntimeException)
+{
+}
+
+void SourceProvider::removeVetoableChangeListener(
+ const OUString& PropertyName, const Reference< XVetoableChangeListener >& aListener)
+ throw (UnknownPropertyException, WrappedTargetException, RuntimeException)
+{
+}
+
+// XServiceInfo
+
+OUString SourceProvider::getImplementationName() throw (RuntimeException)
+{
}
-int main()
+sal_Bool SourceProvider::supportsService(const OUString& ServiceName)
+ throw (RuntimeException)
{
}
+Sequence<OUString> SourceProvider::getSupportedServiceNames()
+ throw (RuntimeException)
+{
+}
+
+// XDataPilotResults
+
+Sequence< Sequence<DataResult> > SourceProvider::getResults() throw (RuntimeException)
+{
+}
+
+// XDimensionsSupplier
+
+Reference<XNameAccess> SourceProvider::getDimensions() throw (RuntimeException)
+{
+}
+
+// DrillDownDataSupplier
+Sequence< Sequence<Any> > SourceProvider::getDrillDownData(
+ const Sequence<DataPilotFieldFilter>& aFilters) throw (RuntimeException)
+{
+}
+
+// Refreshable
+void SourceProvider::refresh() throw (RuntimeException)
+{
+}
+
+void SourceProvider::addRefreshListener(const Reference< XRefreshListener >& l)
+ throw (RuntimeException)
+{
+}
+
+void SourceProvider::removeRefreshListener(const Reference< XRefreshListener >& l)
+ throw (RuntimeException)
+{
+}
+
+}
+