Changeset 1470
- Timestamp:
- 08/05/10 22:04:00 (21 months ago)
- Location:
- trunk
- Files:
-
- 3 edited
-
applications/NXbrowse/NXbrowse.c (modified) (4 diffs)
-
bindings/cpp/NeXusFile.cpp (modified) (2 diffs)
-
src/napi.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/applications/NXbrowse/NXbrowse.c
r1389 r1470 101 101 { "close", "Move out of a group" }, 102 102 { "dir", "" }, 103 { "ls", "" }, 103 104 { "read", "" }, 104 105 { "open", "" }, … … 106 107 { "info", "" }, 107 108 { "exit", "" }, 109 { "quit", "" }, 108 110 { "dump", "" }, 109 111 { "bytesaschar", "" }, … … 373 375 if (StrEq(command, "HELP") || StrEq(command, "INFO")) { 374 376 printf ("NXbrowse commands : DIR\n"); 377 printf (" LS\n"); 375 378 printf (" OPEN <groupName>\n"); 379 printf (" CD <groupName>\n"); 376 380 printf (" READ <dataName>\n"); 377 381 printf (" READ <dataName>[<dimension indices...>]\n"); … … 381 385 printf (" HELP\n"); 382 386 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"); 383 393 } 384 394 /* Command is to print byte as char information */ -
trunk/bindings/cpp/NeXusFile.cpp
r1469 r1470 20 20 * - Exceptions 21 21 * - 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 * 22 24 * 23 25 * \section sec_core Core C++ API … … 28 30 * #include "NeXusFile.hpp" 29 31 * \endcode 32 * For details of the C API see http://download.nexusformat.org/doxygen/html-c/ 30 33 */ 31 34 -
trunk/src/napi.c
r1430 r1470 39 39 * \mainpage NeXus API documentation 40 40 * \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. 42 42 * The subroutines call HDF routines to read and write the NeXus files with the correct structure. 43 43 * An API serves a number of useful purposes: … … 64 64 * #include "napi.h" 65 65 * \endcode 66 * For the C++ API see http://download.nexusformat.org/doxygen/html-cpp 66 67 */ 67 68
Note: See TracChangeset
for help on using the changeset viewer.
