kongdeqiang
7 天以前 28ccfbfc51068a663a80764e14074df5edf2b5ba
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
// -*- Mode: c++; c-basic-offset: 4; tab-width: 4; -*-
 
 
/******************************************************************************
 *
 *  file:  Constraint.h
 *
 *  Copyright (c) 2005, Michael E. Smoot
 *  Copyright (c) 2017, Google LLC
 *  All rights reserved.
 *
 *  See the file COPYING in the top directory of this distribution for
 *  more information.
 *
 *  THE SOFTWARE IS PROVIDED _AS IS_, WITHOUT WARRANTY OF ANY KIND, EXPRESS
 *  OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 *  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 *  THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 *  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 *  FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 *  DEALINGS IN THE SOFTWARE.
 *
 *****************************************************************************/
 
#ifndef TCLAP_CONSTRAINT_H
#define TCLAP_CONSTRAINT_H
 
#include <string>
#include <vector>
#include <list>
#include <iostream>
#include <iomanip>
#include <algorithm>
#include <stdexcept>
 
namespace TCLAP {
 
/**
 * The interface that defines the interaction between the Arg and Constraint.
 */
template<class T>
class Constraint
{
 
    public:
        /**
         * Returns a description of the Constraint.
         */
        virtual std::string description() const =0;
 
        /**
         * Returns the short ID for the Constraint.
         */
        virtual std::string shortID() const =0;
 
        /**
         * The method used to verify that the value parsed from the command
         * line meets the constraint.
         * \param value - The value that will be checked.
         */
        virtual bool check(const T& value) const =0;
 
        /**
         * Destructor.
         * Silences warnings about Constraint being a base class with virtual
         * functions but without a virtual destructor.
         */
        virtual ~Constraint() { ; }
 
        static std::string shortID(Constraint<T> *constraint) {
          if (!constraint)
            throw std::logic_error("Cannot create a ValueArg with a NULL constraint");
          return constraint->shortID();
        }
};
 
} //namespace TCLAP
#endif