INTEGRATION: CWS tune03 (1.5.498); FILE MERGED
2004/08/08 12:54:16 mhu 1.5.498.1: #i29979# Added SD_DLLPUBLIC/PRIVATE (see sddllapi.h) to exported symbols/classes.
This commit is contained in:
parent
bf87b0d947
commit
99806ece9b
1 changed files with 20 additions and 7 deletions
|
@ -2,9 +2,9 @@
|
|||
*
|
||||
* $RCSfile: filedlg.hxx,v $
|
||||
*
|
||||
* $Revision: 1.5 $
|
||||
* $Revision: 1.6 $
|
||||
*
|
||||
* last change: $Author: cl $ $Date: 2002-10-10 12:00:01 $
|
||||
* last change: $Author: rt $ $Date: 2004-08-23 08:21:58 $
|
||||
*
|
||||
* The Contents of this file are made available subject to the terms of
|
||||
* either of the following licenses
|
||||
|
@ -70,12 +70,17 @@
|
|||
#include <tools/errcode.hxx>
|
||||
#endif
|
||||
|
||||
#include <memory> // auto_ptr
|
||||
#ifndef INCLUDED_MEMORY
|
||||
#include <memory>
|
||||
#define INCLUDED_MEMORY
|
||||
#endif
|
||||
|
||||
#ifndef INCLUDED_SDDLLAPI_H
|
||||
#include "sddllapi.h"
|
||||
#endif
|
||||
|
||||
class SdFileDialog_Imp;
|
||||
|
||||
|
||||
/******************************************************************************/
|
||||
|
||||
/**
|
||||
|
@ -85,11 +90,15 @@ class SdFileDialog_Imp;
|
|||
*/
|
||||
class SdExportFileDialog
|
||||
{
|
||||
private:
|
||||
const std::auto_ptr< SdFileDialog_Imp > mpImpl;
|
||||
|
||||
// forbidden and not implemented
|
||||
SdExportFileDialog ();
|
||||
SdExportFileDialog (const SdExportFileDialog &);
|
||||
SdExportFileDialog & operator= (const SdExportFileDialog &);
|
||||
|
||||
public:
|
||||
SdExportFileDialog( BOOL haveCheckbox );
|
||||
explicit SdExportFileDialog( BOOL haveCheckbox );
|
||||
~SdExportFileDialog();
|
||||
|
||||
ErrCode Execute();
|
||||
|
@ -112,10 +121,14 @@ public:
|
|||
(playing the selected sound file). The interface is a downstripped version
|
||||
of the aforementioned class, with similar semantics.
|
||||
*/
|
||||
class SdOpenSoundFileDialog
|
||||
class SD_DLLPUBLIC SdOpenSoundFileDialog
|
||||
{
|
||||
const std::auto_ptr< SdFileDialog_Imp > mpImpl;
|
||||
|
||||
// forbidden and not implemented
|
||||
SdOpenSoundFileDialog (const SdOpenSoundFileDialog &);
|
||||
SdOpenSoundFileDialog & operator= (const SdOpenSoundFileDialog &);
|
||||
|
||||
public:
|
||||
SdOpenSoundFileDialog();
|
||||
~SdOpenSoundFileDialog();
|
||||
|
|
Loading…
Reference in a new issue