Add dist target to CMAKE conf. (#434)
1 /* -*- mode: C++; indent-tabs-mode: nil; -*-
3 * This file is a part of LEMON, a generic C++ optimization library.
5 * Copyright (C) 2003-2009
6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
7 * (Egervary Research Group on Combinatorial Optimization, EGRES).
9 * Permission to use, modify and distribute this software is granted
10 * provided that this copyright notice appears in all copies. For
11 * precise terms see the accompanying LICENSE file.
13 * This software is provided "AS IS" with no warranty of any kind,
14 * express or implied, and with no claim as to its suitability for any
19 // The contents of this file was inspired by the concept checking
20 // utility of the BOOST library (http://www.boost.org).
23 ///\brief Basic utilities for concept checking.
26 #ifndef LEMON_CONCEPT_CHECK_H
27 #define LEMON_CONCEPT_CHECK_H
32 "inline" is used for ignore_unused_variable_warning()
33 and function_requires() to make sure there is no
37 template <class T> inline void ignore_unused_variable_warning(const T&) { }
40 template <class Concept>
41 inline void function_requires()
44 void (Concept::*x)() = & Concept::constraints;
45 ignore_unused_variable_warning(x);
50 template <typename Concept, typename Type>
51 inline void checkConcept() {
53 typedef typename Concept::template Constraints<Type> ConceptCheck;
54 void (ConceptCheck::*x)() = & ConceptCheck::constraints;
55 ignore_unused_variable_warning(x);
61 #endif // LEMON_CONCEPT_CHECK_H