opt_parser.h
Go to the documentation of this file.
1 //-----------------------------------------------------------------------------------
2 // d-SEAMS - Deferred Structural Elucidation Analysis for Molecular Simulations
3 //
4 // Copyright (c) 2018--present d-SEAMS core team
5 //
6 // This program is free software: you can redistribute it and/or modify
7 // it under the terms of the MIT License as published by
8 // the Open Source Initiative.
9 //
10 // A copy of the MIT License is included in the LICENSE file of this repository.
11 // You should have received a copy of the MIT License along with this program.
12 // If not, see <https://opensource.org/licenses/MIT>.
13 //-----------------------------------------------------------------------------------
14 
15 #ifndef _OPT_PARSER_H_
16 #define _OPT_PARSER_H_
17 
18 // This is bundled
19 #include <cxxopts.hpp>
20 
21 cxxopts::ParseResult parse(int argc, char *argv[]);
22 
23 #endif // __OPTIONS_PARSER_H_
cxxopts::ParseResult parse(int argc, char *argv[])
Definition: opt_parser.cpp:18