Page Menu
Home
Xreate
Search
Configure Global Search
Log In
Docs
Questions
Repository
Issues
Patches
Internal API
Files
F3995681
XreateServer.h
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Tue, Jul 7, 8:43 PM
Size
922 B
Mime Type
text/x-c++
Expires
Thu, Jul 9, 8:43 PM (1 d, 8 h)
Engine
blob
Format
Raw Data
Handle
270896
Attached To
rXR Xreate
XreateServer.h
View Options
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/*
* File: XreateServer.h
* Author: pgess
*
* Created on March 29, 2016, 11:43 AM
*/
#ifndef XREATESERVER_H
#define XREATESERVER_H
#include "AbstractXreateServer.h"
class XreateServer: public AbstractXreateServerIf {
public:
XreateServer();
virtual void ping(std::string& _return, const std::string& text);
virtual void checkSyntax(SyntaxCheckResult& _return, const std::string& program);
};
class XreateServerFactory : virtual public AbstractXreateServerIfFactory {
public:
virtual ~XreateServerFactory();
virtual AbstractXreateServerIf* getHandler(const ::apache::thrift::TConnectionInfo& connInfo);
virtual void releaseHandler(AbstractXreateServerIf* handler);
};
#endif /* XREATESERVER_H */
Event Timeline
Log In to Comment