Show
Ignore:
Timestamp:
01/31/06 04:28:47 (3 years ago)
Author:
madcat
Message:

Copyright notice update for 2006.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • hydranode/hnbase/unchain_ptr.h

    r2551 r2613  
    1 /* Copyright 2005 Alo Sarv 
     1/* Copyright 2005-2006 Alo Sarv 
    22 * Distributed under the Boost Software Licence, Version 1.0 
    33 * (See accompanying file LICENCE_1_0.txt or copy at 
     
    2121        // non-const overloads 
    2222        Class& operator()(Class &x) const { return x; } 
    23          
     23 
    2424        template<typename ChainedPtr> 
    2525        Class& operator()(ChainedPtr &x) const { 
    2626                return operator()(*x); 
    2727        } 
    28          
     28 
    2929        Class& operator()(boost::reference_wrapper<Class> &x) const { 
    3030                return operator()(x.get()); 
     
    3636        // const overloads 
    3737        const Class& operator()(const Class &x) const { return x; } 
    38          
     38 
    3939        template<typename ChainedPtr> 
    4040        const Class& operator()(const ChainedPtr &x) const {