COIN-OR::LEMON - Graph Library

Changeset 2260:4274224f8a7d in lemon-0.x for lemon/lemon_reader.h


Ignore:
Timestamp:
10/24/06 19:19:16 (18 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@3016
Message:

concept -> concepts (namespace & directory)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/lemon_reader.h

    r2207 r2260  
    4242
    4343#include <lemon/concept_check.h>
    44 #include <lemon/concept/maps.h>
     44#include <lemon/concepts/maps.h>
    4545
    4646namespace lemon {
     
    832832    NodeSetReader& _readMap(std::string name, MapParameter map,
    833833                            const Reader& reader = Reader()) {
    834       checkConcept<concept::WriteMap<Node, typename Map::Value>, Map>();
     834      checkConcept<concepts::WriteMap<Node, typename Map::Value>, Map>();
    835835      checkConcept<_reader_bits::ItemReader<typename Map::Value>, Reader>();
    836836      if (readers.find(name) != readers.end()) {
     
    10621062    EdgeSetReader& _readMap(std::string name, MapParameter map,
    10631063                            const Reader& reader = Reader()) {
    1064       checkConcept<concept::WriteMap<Edge, typename Map::Value>, Map>();
     1064      checkConcept<concepts::WriteMap<Edge, typename Map::Value>, Map>();
    10651065      checkConcept<_reader_bits::ItemReader<typename Map::Value>, Reader>();
    10661066      if (readers.find(name) != readers.end()) {
     
    13061306    UEdgeSetReader& _readMap(std::string name, MapParameter map,
    13071307                                 const Reader& reader = Reader()) {
    1308       checkConcept<concept::WriteMap<UEdge, typename Map::Value>, Map>();
     1308      checkConcept<concepts::WriteMap<UEdge, typename Map::Value>, Map>();
    13091309      checkConcept<_reader_bits::ItemReader<typename Map::Value>, Reader>();
    13101310      if (readers.find(name) != readers.end()) {
     
    13771377                                    const Reader& reader = Reader()) {
    13781378      checkConcept<_reader_bits::ItemReader<typename Map::Value>, Reader>();
    1379       checkConcept<concept::WriteMap<Edge, typename Map::Value>, Map>();
     1379      checkConcept<concepts::WriteMap<Edge, typename Map::Value>, Map>();
    13801380      readMap("+" + name,
    13811381              _reader_bits::forwardComposeMap(graph, map), reader);
Note: See TracChangeset for help on using the changeset viewer.