home *** CD-ROM | disk | FTP | other *** search
- //----------------------------------------------------------------------------------------------------
- //
- // SoundSubInspector
- //
- // Inherits From: DefaultSubInspector
- //
- // Declared In: SoundSubInspector.h
- //
- // Class Description
- //
- // SoundSubInspector manages subinspection of 'snd' files.
- //
- // Disclaimer
- //
- // You may freely copy, distribute and reuse this software and its
- // associated documentation. I disclaim any warranty of any kind,
- // expressed or implied, as to its fitness for any particular use.
- //
- //----------------------------------------------------------------------------------------------------
- #import "DefaultSubInspector.h"
-
-
- @interface SoundSubInspector : DefaultSubInspector
- {
- id sound;
-
- id size;
- id samples;
- id seconds;
- id format;
- id rate;
- id channels;
- id info;
- }
-
- //----------------------------------------------------------------------------------------------------
- // Action Methods
- //----------------------------------------------------------------------------------------------------
- - play: sender;
-
-
- @end