me empecine con el makefile.... make stats :)
[seni.git] / src / args.hpp
blob2f872740088d9bcd3f38389cacc26f303deb03d9
1 /*SENI, Search for Extra Nibiru Intelligence*/
3 /*
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>.
19 Copyright SSW Team 2010
22 #ifndef __ARGS_H__SENI
23 #define __ARGS_H__SENI
25 class Args {
26 public:
27 Args(int, char **);
28 int getArg(const char *);
29 int getMod(const char *, char *);
30 int checkArgs(char **, int);
31 private:
32 int argc;
33 char **argv;
36 #endif