You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #include <iostream> /**< std::cout std::cerr std::endl */
- #include <string> /**< std::string */
-
- #include "dbcc/dbc_iterator.h"
- #include "dbcc/helper/gen_helper.h"
-
- const std::string usage = "This parser is meant to be used via CLi at the moment\n"
- "\t./parser <FILE> <CONFIG FILE>\n";
-
- int main(int argc, char *argv[])
- {
- if (argc < 3)
- {
- std::cout << usage << std::endl;
- return 0;
- }
-
- ad::dbcc::helper::GenHelper gen(argv[1], argv[2]);
-
- std::cout << gen.GenAll() << std::endl;
-
- return 0;
- }
|