summaryrefslogtreecommitdiffabout
path: root/tools/mididump.cc
Unidiff
Diffstat (limited to 'tools/mididump.cc') (more/less context) (ignore whitespace changes)
-rw-r--r--tools/mididump.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/mididump.cc b/tools/mididump.cc
index 83b7086..604bcc0 100644
--- a/tools/mididump.cc
+++ b/tools/mididump.cc
@@ -1,53 +1,54 @@
1#include <getopt.h> 1#include <getopt.h>
2#include <iostream> 2#include <iostream>
3#include <fstream> 3#include <fstream>
4#include <string> 4#include <string>
5#include <algorithm> 5#include <algorithm>
6#include <cstring>
6using namespace std; 7using namespace std;
7#include <konforka/exception.h> 8#include <konforka/exception.h>
8#include <midillo/SMF.h> 9#include <midillo/SMF.h>
9using namespace midillo; 10using namespace midillo;
10 11
11#include "config.h" 12#include "config.h"
12#define PHEADER PACKAGE " " VERSION " - mididump - dump midi files" 13#define PHEADER PACKAGE " " VERSION " - mididump - dump midi files"
13#define PCOPY "Copyright (c) 2006 Klever Group" 14#define PCOPY "Copyright (c) 2006 Klever Group"
14 15
15static void usage(const char *p) { 16static void usage(const char *p) {
16 cerr << PHEADER << endl 17 cerr << PHEADER << endl
17 << PCOPY << endl << endl 18 << PCOPY << endl << endl
18 << " " << p << " [options] [<input-file>[ <output-file>]]" << endl << endl 19 << " " << p << " [options] [<input-file>[ <output-file>]]" << endl << endl
19 << " -h, --help" << endl 20 << " -h, --help" << endl
20 << " --usage display this text" << endl 21 << " --usage display this text" << endl
21 << " -V, --version display version number" << endl 22 << " -V, --version display version number" << endl
22 << " -L, --license show license" << endl; 23 << " -L, --license show license" << endl;
23} 24}
24 25
25main(int argc,char **argv) { 26main(int argc,char **argv) {
26 try { 27 try {
27 while(true) { 28 while(true) {
28 static struct option opts[] = { 29 static struct option opts[] = {
29 { "help", no_argument, 0, 'h' }, 30 { "help", no_argument, 0, 'h' },
30 { "usage", no_argument, 0, 'h' }, 31 { "usage", no_argument, 0, 'h' },
31 { "version", no_argument, 0, 'V' }, 32 { "version", no_argument, 0, 'V' },
32 { "license", no_argument, 0, 'L' }, 33 { "license", no_argument, 0, 'L' },
33 { NULL, 0, 0, 0 } 34 { NULL, 0, 0, 0 }
34 }; 35 };
35 int c = getopt_long(argc,argv,"f:hVLl",opts,NULL); 36 int c = getopt_long(argc,argv,"f:hVLl",opts,NULL);
36 if(c==-1) 37 if(c==-1)
37 break; 38 break;
38 switch(c) { 39 switch(c) {
39 case 'h': 40 case 'h':
40 usage(*argv); 41 usage(*argv);
41 exit(0); 42 exit(0);
42 break; 43 break;
43 case 'V': 44 case 'V':
44 cerr << VERSION << endl; 45 cerr << VERSION << endl;
45 exit(0); 46 exit(0);
46 break; 47 break;
47 case 'L': 48 case 'L':
48 extern const char *COPYING; 49 extern const char *COPYING;
49 cerr << COPYING << endl; 50 cerr << COPYING << endl;
50 exit(0); 51 exit(0);
51 break; 52 break;
52 default: 53 default:
53 cerr << "Huh??" << endl; 54 cerr << "Huh??" << endl;