Main Page   Namespace List   Class Hierarchy   Compound List   File List   Namespace Members   Compound Members  

noconst.h

Go to the documentation of this file.
00001 #ifndef NOCONST_H
00002 #define NOCONST_H
00003 // $Id: noconst.h,v 1.1.1.1 2002/09/28 17:57:53 dvermeir Exp $
00004 template<typename T>
00005 struct noconst {
00006 typedef T mutable_type;
00007 };
00008 
00009 template<typename T>
00010 struct noconst<const T> {
00011 typedef T mutable_type;
00012 };
00013 
00014 #endif

dvenv-0.2.2 [20 October, 2002]