Ignore:
Timestamp:
Mar 10, 2007, 4:21:32 PM (18 years ago)
Author:
cinc
Message:

Added doxygen tags.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/desktop/idl/wpfilesystem.idl

    r243 r245  
    3232*
    3333* ***** END LICENSE BLOCK ***** */
     34/** \file
     35   
     36*/
    3437
    3538#ifndef wpfsys_idl
     
    4548NOMMETACLASS(M_WPFileSystem);
    4649
     50/** \interface WPFileSystem
     51
     52    Any object which represents a filesystem object is a subclass of this class, e.g.
     53    WPDataFile or WPFolder.
     54 */
    4755interface WPFileSystem : WPObject
    4856{
    4957  NOMCLASSVERSION(1, 0);
    5058
    51   void tstSetFullPath(in string fullPath);   
     59  void tstSetFullPath(in string fullPath);
     60  /**
     61     Query the filename of this object.
     62
     63     \remarks This name may be different from the displayed title because of filename
     64     encoding on disk.
     65
     66     \param bFullPath If set to TRUE the fully qualified path is returned.
     67   */
    5268  PNOMPath wpQueryFileName(in boolean bFullPath);
    5369
     70  /**
     71     wpMoveObject() must be overriden to physically move a file or folder when requested.
     72     The method implementation of WPObject only handles the graphical representation on the
     73     desktop by inserting icons into folder windows.
     74   */
    5475  NOMOVERRIDE(wpMoveObject);
    5576  NOMOVERRIDE(wpCopyObject);
Note: See TracChangeset for help on using the changeset viewer.