home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1995 February: Tool Chest / Dev.CD Feb 95 / Dev.CD Feb 95.toast / New System Software Extensions / ASLM SDK v1.1.2 / ASLM Examples / TestTools / Sources / TestLibrary.exp < prev    next >
Encoding:
Text File  |  1994-11-21  |  1.7 KB  |  86 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        TestLibrary.exp
  3.  
  4.     Contains:    Export declarations for the TestLibrary
  5.  
  6.     Copyright:    © 1992-1993 by Apple Computer, Inc., all rights reserved.
  7.  
  8. */
  9.  
  10. #include <Version.h>
  11. #include "TestLinkedList.h"
  12. #include "TestAllocLinkedList.h"
  13. #include "TestPriorityList.h"
  14. #include "TestTimeScheduler.h"
  15. #include "TestTaskScheduler.h"
  16. #include "TestArbitrator.h"
  17. #include "TestTimeStamp.h"
  18. #include "TestRandom.h"
  19. #include "TestHashList.h"
  20. #include "TestStandardPool.h"
  21. #include "TestFSet.h"
  22. #include "TestNoVTable.h"
  23. #include "TestTimings.h"
  24. #include "TestExceptions.h"
  25. #include "TestMisc.h"
  26.  
  27. Library
  28. {
  29.     version = 1.0…1.1;
  30.     id = "appl:test$TestLibrary,1.1";
  31.     flags = segUnload;
  32.     heap = temp;
  33.     clientdata = ClientData;
  34. };
  35.  
  36.  
  37. Class TTestTool
  38. {
  39.     version = 1.0…1.1;
  40.     flags = noStubs;
  41.     exports = TTestTool;
  42. };
  43. Class TTestAllocLinkedList { flags = newobject, noStubs; };
  44. Class TTestArbitrator { flags = newobject, noStubs; };
  45. Class TTestLinkedList { flags = newobject, noStubs; };
  46. Class TTestPriorityList { flags = newobject, noStubs; };
  47. Class TTestTaskScheduler { flags = newobject, noStubs; };
  48. Class TTestTimeScheduler
  49. {
  50.     flags = newobject, noStubs;
  51.     version = 1.1;
  52. };
  53. Class TTestTimeStamp { flags = newobject, noStubs; };
  54. Class TTestRandom
  55. {
  56.     flags = newobject, noStubs;
  57.     version = 1.1;
  58. };
  59. Class TTestHashList { flags = newobject, noStubs; };
  60. Class TTestStandardPool { flags = newobject, noStubs; };
  61. Class TTestFSet
  62. {
  63.     flags = newobject, noStubs;
  64.     version = 1.1;
  65. };
  66. Class TTestNoVTable
  67. {
  68.     flags = newobject, noStubs;
  69.     version = 1.1;
  70. };
  71. Class TTestTimings
  72. {
  73.     flags = newobject, noStubs;
  74.     version = 1.1;
  75. };
  76. Class TTestExceptions
  77. {
  78.     flags = newobject, noStubs;
  79.     version = 1.1;
  80. };
  81. Class TTestMisc
  82. {
  83.     flags = newobject, noStubs;
  84.     version = 1.1;
  85. };
  86.