Changeset 1470


Ignore:
Timestamp:
08/05/10 22:04:00 (21 months ago)
Author:
Freddie Akeroyd
Message:

Update docs. Refs #220

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/applications/NXbrowse/NXbrowse.c

    r1389 r1470  
    101101    { "close", "Move out of a group" }, 
    102102    { "dir", "" }, 
     103    { "ls", "" }, 
    103104    { "read", "" }, 
    104105    { "open", "" }, 
     
    106107    { "info", "" }, 
    107108    { "exit", "" }, 
     109    { "quit", "" }, 
    108110    { "dump", "" }, 
    109111    { "bytesaschar", "" }, 
     
    373375      if (StrEq(command, "HELP") || StrEq(command, "INFO")) { 
    374376         printf ("NXbrowse commands : DIR\n"); 
     377         printf ("                    LS\n"); 
    375378         printf ("                    OPEN <groupName>\n"); 
     379         printf ("                    CD <groupName>\n"); 
    376380         printf ("                    READ <dataName>\n"); 
    377381         printf ("                    READ <dataName>[<dimension indices...>]\n"); 
     
    381385         printf ("                    HELP\n"); 
    382386         printf ("                    EXIT\n"); 
     387         printf ("\n"); 
     388         printf ("If readline support is enabled, pressing <TAB> after a command \n"); 
     389         printf ("or partial nexus object name will list/complete possible names\n"); 
     390         printf ("\n"); 
     391         printf ("    cd ent<TAB KEY PRESSED>     # all items starting with ent are listed\n"); 
     392         printf ("\n"); 
    383393      } 
    384394      /* Command is to print byte as char information */ 
  • trunk/bindings/cpp/NeXusFile.cpp

    r1469 r1470  
    2020 * - Exceptions 
    2121 * - suport for std::vector<type> and std::string 
     22 * - can directly obtain a container of entry/attribute details rather than needing to iterate via getNext calls.  
     23 * 
    2224 * 
    2325 * \section sec_core Core C++ API 
     
    2830 * #include "NeXusFile.hpp" 
    2931 * \endcode 
     32 * For details of the C API see http://download.nexusformat.org/doxygen/html-c/ 
    3033 */ 
    3134 
  • trunk/src/napi.c

    r1430 r1470  
    3939 * \mainpage NeXus API documentation 
    4040 * \section sec_purpose Purpose of API 
    41  * The NeXus Application Program Interface is a suite of subroutines, written in C but with wrappers in Fortran 77 and 90.  
     41 * The NeXus Application Program Interface is a suite of subroutines, written in C but with wrappers in C++, JAVA, PYTHON, Fortran 77 and 90.  
    4242 *  The subroutines call HDF routines to read and write the NeXus files with the correct structure.  
    4343 * An API serves a number of useful purposes:  
     
    6464 * #include "napi.h" 
    6565 * \endcode 
     66 * For the C++ API see http://download.nexusformat.org/doxygen/html-cpp 
    6667 */ 
    6768 
Note: See TracChangeset for help on using the changeset viewer.