X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Fio%2Fbuffered.h;h=c05fc25eed5ad9454448d34f60a716ed091d56cb;hp=f078ea1094324d57d1533063aa457e019912ae2f;hb=HEAD;hpb=991fabc1956b73a4007859058fb44171000b452e diff --git a/source/io/buffered.h b/source/io/buffered.h index f078ea1..c05fc25 100644 --- a/source/io/buffered.h +++ b/source/io/buffered.h @@ -2,12 +2,13 @@ #define MSP_IO_BUFFERED_H_ #include +#include #include "base.h" namespace Msp { namespace IO { -class Buffered: public Base, public sigc::trackable +class MSPCORE_API Buffered: public Base, public sigc::trackable { private: Base &below; @@ -32,8 +33,8 @@ protected: public: std::size_t put(char) override; - bool getline(std::string &); - int get(); + bool getline(std::string &) override; + int get() override; const Handle &get_handle(Mode) override;