| 12345678910111213141516171819 |
- /******************************************************************************/
- /******************************************************************************/
- class ExportWindow : WindowIO
- {
- UID elm_id;
- Str ext;
- static void Save(C Str &name, ptr);
- void save(C Str &name);
- void activate(C UID &elm_id);
- public:
- ExportWindow();
- };
- /******************************************************************************/
- /******************************************************************************/
- extern ExportWindow Export;
- /******************************************************************************/
|