home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 April: Mac OS SDK / Dev.CD Apr 99 SDK1.toast / Development Kits / Apple Shared Library Manager / ASLM Examples / TestTools / Sources / TestLibrary.exp < prev    next >
Encoding:
Text File  |  1996-11-19  |  1.7 KB  |  85 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.  
  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.2;
  30.     id = "appl:test$TestLibrary,1.2";
  31.     flags = segUnload;
  32.     heap = temp;
  33.     clientdata = ClientData;
  34. };
  35.  
  36.  
  37. Class TTestTool
  38. {
  39.     flags = noStubs;
  40.     exports = TTestTool;
  41. };
  42. Class TTestAllocLinkedList { flags = newobject, noStubs; };
  43. Class TTestArbitrator { flags = newobject, noStubs; };
  44. Class TTestLinkedList { flags = newobject, noStubs; };
  45. Class TTestPriorityList { flags = newobject, noStubs; };
  46. Class TTestTaskScheduler { flags = newobject, noStubs; };
  47. Class TTestTimeScheduler
  48. {
  49.     flags = newobject, noStubs;
  50.     version = 1.0…1.2;
  51. };
  52. Class TTestTimeStamp { flags = newobject, noStubs; };
  53. Class TTestRandom
  54. {
  55.     flags = newobject, noStubs;
  56.     version = 1.0…1.2;
  57. };
  58. Class TTestHashList { flags = newobject, noStubs; };
  59. Class TTestStandardPool { flags = newobject, noStubs; };
  60. Class TTestFSet
  61. {
  62.     flags = newobject, noStubs;
  63.     version = 1.0…1.2;
  64. };
  65. Class TTestNoVTable
  66. {
  67.     flags = newobject, noStubs;
  68.     version = 1.0…1.2;
  69. };
  70. Class TTestTimings
  71. {
  72.     flags = newobject, noStubs;
  73.     version = 1.0…1.2;
  74. };
  75. Class TTestExceptions
  76. {
  77.     flags = newobject, noStubs;
  78.     version = 1.0…1.2;
  79. };
  80. Class TTestMisc
  81. {
  82.     flags = newobject, noStubs;
  83.     version = 1.0…1.2;
  84. };
  85.