|
Revision 6091, 0.9 KB
(checked in by westram, 3 years ago)
|
- new commands for import filters
- AUTOTAG (switch on/off automatic tagging)
- SETGLOBAL (global variables, set at beginning of each imported file)
- tweaked code of input_format_per_line and input_format_struct (memory handling)
- SetVariables? changed type and access to set values
- user-errors are stored like variable values
- documentation of new commands
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | // =============================================================== // |
|---|
| 2 | // // |
|---|
| 3 | // File : awti_export.hxx // |
|---|
| 4 | // Purpose : Interface to export window // |
|---|
| 5 | // // |
|---|
| 6 | // Coded by Ralf Westram (coder@reallysoft.de) in June 2008 // |
|---|
| 7 | // Institute of Microbiology (Technical University Munich) // |
|---|
| 8 | // http://www.arb-home.de/ // |
|---|
| 9 | // // |
|---|
| 10 | // =============================================================== // |
|---|
| 11 | |
|---|
| 12 | #ifndef AWTI_EXPORT_HXX |
|---|
| 13 | #define AWTI_EXPORT_HXX |
|---|
| 14 | |
|---|
| 15 | #ifndef ARB_ASSERT_H |
|---|
| 16 | #include <arb_assert.h> |
|---|
| 17 | #endif |
|---|
| 18 | |
|---|
| 19 | AW_window *open_AWTC_export_window(AW_root *awr,GBDATA *gb_main); |
|---|
| 20 | |
|---|
| 21 | #else |
|---|
| 22 | #error awti_export.hxx included twice |
|---|
| 23 | #endif // AWTI_EXPORT_HXX |
|---|