COIN-OR::LEMON - Graph Library

source: lemon-0.x/lemon/invalid.h @ 1979:c2992fd74dad

Last change on this file since 1979:c2992fd74dad was 1956:a055123339d5, checked in by Alpar Juttner, 18 years ago

Unified copyright notices

File size: 1.3 KB
RevLine 
[906]1/* -*- C++ -*-
2 *
[1956]3 * This file is a part of LEMON, a generic C++ optimization library
4 *
5 * Copyright (C) 2003-2006
6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
[1359]7 * (Egervary Research Group on Combinatorial Optimization, EGRES).
[906]8 *
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.
12 *
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
15 * purpose.
16 *
17 */
[162]18
[921]19#ifndef LEMON_INVALID_H
20#define LEMON_INVALID_H
[162]21
[242]22///\file
23///\brief Definition of INVALID.
24
[921]25namespace lemon {
[162]26
27  /// Dummy type to make it easier to make invalid iterators.
28 
29  /// See \ref INVALID, how to use it.
30 
[412]31  struct Invalid {
32  public:
33    bool operator==(Invalid) { return true;  }
34    bool operator!=(Invalid) { return false; }
35    bool operator< (Invalid) { return false; }
36  };
[162]37 
38  /// Invalid iterators.
39 
40  /// \ref Invalid is a global type that converts to each iterator
41  /// in such a way that the value of the target iterator will be invalid.
[184]42
[1836]43  //const Invalid &INVALID = *(Invalid *)0;
[184]44
[1836]45#ifdef LEMON_ONLY_TEMPLATES
[169]46  const Invalid INVALID = Invalid();
[1836]47#else
48  extern const Invalid INVALID;
49#endif
[162]50
[921]51} //namespace lemon
[162]52
53#endif
54 
Note: See TracBrowser for help on using the repository browser.