1 /*
2  *  Created by Phil on 02/11/2010.
3  *  Copyright 2010 Two Blue Cubes Ltd. All rights reserved.
4  *
5  *  Distributed under the Boost Software License, Version 1.0. (See accompanying
6  *  file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
7  */
8 #ifndef TWOBLUECUBES_CATCH_COMMANDLINE_HPP_INCLUDED
9 #define TWOBLUECUBES_CATCH_COMMANDLINE_HPP_INCLUDED
10 
11 #include "catch_config.hpp"
12 #include "catch_clara.h"
13 
14 namespace Catch {
15 
16     clara::Parser makeCommandLineParser( ConfigData& config );
17 
18 } // end namespace Catch
19 
20 #endif // TWOBLUECUBES_CATCH_COMMANDLINE_HPP_INCLUDED
21