--- /dev/null
+/* $Id$
+
+This file is part of libmspcore
+Copyright © 2008 Mikko Rasa, Mikkosoft Productions
+Distributed under the LGPL
+*/
+
+#ifndef MSP_CORE_META_H_
+#define MSP_CORE_META_H_
+
+namespace Msp {
+
+template<typename T>
+struct RemoveConst
+{ typedef T Type; };
+
+template<typename T>
+struct RemoveConst<const T>
+{ typedef T Type; };
+
+} // namespace Msp
+
+#endif
#define MSP_CORE_VARIANT_H_
#include "except.h"
+#include "meta.h"
namespace Msp {
public:
Variant(): store(0) { }
template<typename T>
- Variant(T v): store(new Store<T>(v)) { }
+ Variant(const T &v): store(new Store<typename RemoveConst<T>::Type>(v)) { }
~Variant() { delete store; }
template<typename T>
- Variant &operator=(T v)
+ Variant &operator=(const T &v)
{
delete store;
- store=new Store<T>(v);
+ store=new Store<typename RemoveConst<T>::Type>(v);
return *this;
}
template<typename T>
- T value() const
+ T &value() const
{
- Store<T> *s=dynamic_cast<Store<T> *>(store);
+ typedef typename RemoveConst<T>::Type NCT;
+ Store<NCT> *s=dynamic_cast<Store<NCT> *>(store);
if(!s)
throw InvalidState("Type mismatch");
return s->data;
template<typename T>
bool check_type() const
{
- return dynamic_cast<Store<T> *>(store)!=0;
+ return dynamic_cast<Store<typename RemoveConst<T>::Type> *>(store)!=0;
}
template<typename T>