home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / Libraries / Aidan's Class Libraries / Source / Headers / CLWindowMenuList.h < prev   
Encoding:
Text File  |  1997-05-18  |  317 b   |  18 lines  |  [TEXT/CWIE]

  1. //Copyright (c) 1997 Aidan Cully
  2. //All rights reserved
  3.  
  4. #ifndef __WINDOWMENULIST_H
  5. #define __WINDOWMENULIST_H
  6.  
  7. #include "CLMenuList.h"
  8.  
  9. class TBaseWindow;
  10.  
  11. class TWindowMenuList: public TMenuList_Priv<TBaseWindow*> {
  12. protected:
  13.     virtual unsigned char *GetTitle();
  14. public:
  15.     virtual Boolean Action( UInt16 );
  16. };
  17.  
  18. #endif