comparison bits/PluginHandleMapper.h @ 40:55d69b26d4db

Pull out CountingPluginHandleMapper; consts
author Chris Cannam <c.cannam@qmul.ac.uk>
date Mon, 22 Aug 2016 17:16:44 +0100
parents 2d97883d20df
children f4244a2d55ac
comparison
equal deleted inserted replaced
39:183be3bc9d7b 40:55d69b26d4db
47 class NotFound : virtual public std::runtime_error { 47 class NotFound : virtual public std::runtime_error {
48 public: 48 public:
49 NotFound() : runtime_error("plugin or handle not found in mapper") { } 49 NotFound() : runtime_error("plugin or handle not found in mapper") { }
50 }; 50 };
51 51
52 virtual int32_t pluginToHandle(Vamp::Plugin *) = 0; // may throw NotFound 52 virtual int32_t pluginToHandle(Vamp::Plugin *) const = 0; // may throw NotFound
53 virtual Vamp::Plugin *handleToPlugin(int32_t) = 0; // may throw NotFound 53 virtual Vamp::Plugin *handleToPlugin(int32_t) const = 0; // may throw NotFound
54 }; 54 };
55 55
56 } 56 }
57 57
58 #endif 58 #endif