Main MRPT website
>
C++ reference
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
mrpt
otherlibs
tclap
IgnoreRestVisitor.h
Go to the documentation of this file.
1
2
/******************************************************************************
3
*
4
* file: IgnoreRestVisitor.h
5
*
6
* Copyright (c) 2003, Michael E. Smoot .
7
* All rights reverved.
8
*
9
* See the file COPYING in the top directory of this distribution for
10
* more information.
11
*
12
* THE SOFTWARE IS PROVIDED _AS IS_, WITHOUT WARRANTY OF ANY KIND, EXPRESS
13
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
14
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
15
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
16
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
17
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
18
* DEALINGS IN THE SOFTWARE.
19
*
20
*****************************************************************************/
21
22
23
#ifndef TCLAP_IGNORE_REST_VISITOR_H
24
#define TCLAP_IGNORE_REST_VISITOR_H
25
26
#include <
mrpt/otherlibs/tclap/Visitor.h
>
27
#include <
mrpt/otherlibs/tclap/Arg.h
>
28
29
namespace
TCLAP {
30
31
/**
32
* A Vistor that tells the CmdLine to begin ignoring arguments after
33
* this one is parsed.
34
*/
35
class
IgnoreRestVisitor
:
public
Visitor
36
{
37
public
:
38
39
/**
40
* Constructor.
41
*/
42
IgnoreRestVisitor
() :
Visitor
() {}
43
44
/**
45
* Sets Arg::_ignoreRest.
46
*/
47
void
visit
() {
Arg::beginIgnoring
(); }
48
};
49
50
}
51
52
#endif
Page generated by
Doxygen 1.8.3
for MRPT 0.9.6 SVN: at Fri Feb 15 22:05:02 EST 2013