| // -*- mode: c++; indent-tabs-mode: nil; tab-width: -*- | |
| namespace MosesServer | |
| { | |
| class Server; | |
| class | |
| CloseSession : public xmlrpc_c::method | |
| { | |
| Server& m_server; | |
| public: | |
| CloseSession(Server& server); | |
| void execute(xmlrpc_c::paramList const& paramList, | |
| xmlrpc_c::value * const retvalP); | |
| }; | |
| } | |