X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fio%2Fasset.cpp;h=d605ff49573cb2e329513ea2d722023945de302b;hb=1787d4928ac1285f5434a2c8d0676deea9ce9176;hp=a5ce1756a0273faad1f8ebeccfa262211bea27c9;hpb=bda95f684da98079f4b1fe705d969bacb6d86e12;p=libs%2Fcore.git diff --git a/source/io/asset.cpp b/source/io/asset.cpp index a5ce175..d605ff4 100644 --- a/source/io/asset.cpp +++ b/source/io/asset.cpp @@ -1,12 +1,30 @@ +#include #include "asset.h" +using namespace std; + namespace Msp { namespace IO { -unsigned Asset::do_write(const char *, unsigned) +void Asset::set_block(bool) +{ + throw unsupported("Asset::set_block"); +} + +void Asset::set_inherit(bool) +{ + throw unsupported("Asset::set_inherit"); +} + +size_t Asset::do_write(const char *, size_t) { throw invalid_access(M_WRITE); } +const Handle &Asset::get_handle(Mode) +{ + throw unsupported("Asset::get_handle"); +} + } // namespace IO } // namespace Msp