Revision 2e526a15 server/include/MiddlewareRSB.h

View differences:

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

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

  
61 61
private:
62 62
    void init_callbacks();

Also available in: Unified diff