]> git.tdb.fi Git - libs/core.git/blob - source/io/asset.cpp
Remove deprecated things
[libs/core.git] / source / io / asset.cpp
1 #include "asset.h"
2
3 using namespace std;
4
5 namespace Msp {
6 namespace IO {
7
8 void Asset::set_block(bool)
9 {
10         throw logic_error("Asset::set_block");
11 }
12
13 void Asset::set_inherit(bool)
14 {
15         throw logic_error("Asset::set_inherit");
16 }
17
18 unsigned Asset::do_write(const char *, unsigned)
19 {
20         throw invalid_access(M_WRITE);
21 }
22
23 const Handle &Asset::get_handle(Mode)
24 {
25         throw logic_error("Asset::get_handle");
26 }
27
28 } // namespace IO
29 } // namespace Msp