]> git.tdb.fi Git - libs/core.git/blobdiff - source/io/base.cpp
Add move semantics to Variant
[libs/core.git] / source / io / base.cpp
index 95a3685fc34021322b800e185e7a52c9343d8521..b8c13d2193060f94f957178f8f01052c62593d41 100644 (file)
@@ -6,10 +6,7 @@ using namespace std;
 namespace Msp {
 namespace IO {
 
-Base::Base():
-       mode(M_READ),
-       eof_flag(false),
-       mutex(0)
+Base::Base()
 { }
 
 Base::~Base()
@@ -59,11 +56,6 @@ void Base::set_eof()
        }
 }
 
-const Handle &Base::get_handle(Mode)
-{
-       throw logic_error("Base::get_handle");
-}
-
 
 Base::Synchronize::Synchronize(Base &i):
        io(i)