home *** CD-ROM | disk | FTP | other *** search
- /* ===============
- * AEATokenDesc.cc
- * ===============
- */
-
- #include "AEADebugging.h"
-
- #include <Errors.h>
-
- #include "AEATokenDesc.hh"
-
-
- AEATokenDesc::AEATokenDesc()
- {
-
- }
-
- AEATokenDesc::AEATokenDesc(AEDesc inAEDesc)
- {
- mDesc.Duplicate(inAEDesc);
- }
-
- AEATokenDesc::~AEATokenDesc()
- {
-
- }
-
- void
- AEATokenDesc::MakeDataDescriptor(AEDesc &outAEDesc)
- {
- if (mDesc.DescriptorType() == typeModelToken) {
- } else
- ThrowOSErr_(errAEEventNotHandled);
- }
-