Revision 888a909b server/include/MiddlewareRSB.h

View differences:

server/include/MiddlewareRSB.h
46 46
    ~MiddlewareRSB(){}
47 47
    void init(){};
48 48
    void tick(){};
49
    boost::shared_ptr<Utterance> tts_call(std::string text){
50
        return boost::shared_ptr<Utterance>(new Utterance());
49
    std::shared_ptr<Utterance> tts_call(std::string text){
50
        return std::shared_ptr<Utterance>(new Utterance());
51 51
    }
52 52

  
53 53
#else
......
56 56
    ~MiddlewareRSB();
57 57
    void init();
58 58
    void tick();
59
    boost::shared_ptr<Utterance> tts_call(std::string text);
59
    std::shared_ptr<Utterance> tts_call(std::string text);
60 60

  
61 61
private:
62 62
    void init_callbacks();

Also available in: Unified diff