forked from jupyter-xeus/xeus-cling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxoptions.hpp
23 lines (20 loc) · 818 Bytes
/
xoptions.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/***************************************************************************
* Copyright (c) 2016, Johan Mabille, Loic Gouarin and Sylvain Corlay *
* *
* Distributed under the terms of the BSD 3-Clause License. *
* *
* The full license is in the file LICENSE, distributed with this software. *
****************************************************************************/
#ifndef XCPP_OPTIONS_HPP
#define XCPP_OPTIONS_HPP
#include "cxxopts.hpp"
namespace xcpp
{
struct xoptions : public cxxopts::Options
{
using parent = cxxopts::Options;
using parent::Options;
void parse(const std::string& line);
};
}
#endif