summaryrefslogtreecommitdiff
path: root/inc/dpmember.hxx
blob: 75d3805329f1076826d89cea6c7af86c8a47bf09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef __DPMEMBER_HXX__
#define __DPMEMBER_HXX__

#include <cppuhelper/implbase1.hxx>

#include <com/sun/star/container/XNamed.hpp>

namespace dpsource {

class DPMember : public ::cppu::WeakImplHelper1< ::com::sun::star::container::XNamed >
{
public:
    DPMember();
    ~DPMember();

    // XNamed

    ::rtl::OUString SAL_CALL getName() throw (::com::sun::star::uno::RuntimeException);

    void SAL_CALL setName(const ::rtl::OUString& aName) 
        throw (::com::sun::star::uno::RuntimeException);

private:
    ::rtl::OUString maName;
};

}

#endif