Revision 482adb6d server/include/MiddlewareRSB.h

View differences:

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

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

  
62 62
private:
63 63
	void init_callbacks();

Also available in: Unified diff