jdkmidi class library documentation

Copyright © 2004 J.D. Koftinoff Software, Ltd.

Released under the GNU General Public License (GPL)




Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | File List | Namespace Members | Class Members | File Members

tests/jdkmidi_test_show.cpp File Reference

#include "jdkmidi/world.h"
#include "jdkmidi/fileread.h"
#include "jdkmidi/fileshow.h"

Go to the source code of this file.

Functions

int main (int argc, char **argv)


Function Documentation

int main int  argc,
char **  argv
 

Definition at line 29 of file jdkmidi_test_show.cpp.

References jdkmidi::MIDIFileRead::Parse().

00030 {
00031   if( argc>1 )
00032   {   
00033     jdkmidi::MIDIFileReadStreamFile rs( argv[1] );
00034     jdkmidi::MIDIFileShow shower( stdout );
00035     jdkmidi::MIDIFileRead reader( &rs, &shower );
00036     
00037     reader.Parse();
00038   }
00039   
00040   return 0;   
00041 }