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"
-
- const std::string usage = "This parser is meant to be used via CLi at the moment\n"
- "\t./parser <FILE>\n";
-
- int main(int argc, char *argv[])
- {
- if (argc < 2)
- {
- std::cout << usage << std::endl;
- return 0;
- }
-
- ad::dbcc::DbcIterator iter(argv[1]);
- std::cout << iter << std::endl;
- return 0;
- }
|