mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
18 lines
381 B
C++
18 lines
381 B
C++
#ifndef _smallrpcserver_smallserver_h_
|
|
#define _smallrpcserver_smallserver_h_
|
|
#include <Core/Core.h>
|
|
#include <ValueMap/ValueMap.h>
|
|
#include <XmlRpc/XmlRpc.h>
|
|
|
|
|
|
class Hello : public XmlRpcMethod {
|
|
public:
|
|
Hello() : XmlRpcMethod("hello") {}
|
|
void Help(String& h);
|
|
void Signature(ValueArray& va);
|
|
void Execute(Value& result,ValueArray params);
|
|
};
|
|
|
|
|
|
|
|
#endif
|