logic: IDE Communication
Network code and controller added to communicate with IDE plugins. Does not include GUI integration though.
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
#ifndef MESSAGE_MOVE_IDE_CURSOR_H
|
||||
#define MESSAGE_MOVE_IDE_CURSOR_H
|
||||
|
||||
#include "utility/messaging/Message.h"
|
||||
|
||||
class MessageMoveIDECursor : public Message<MessageMoveIDECursor>
|
||||
{
|
||||
public:
|
||||
MessageMoveIDECursor(const std::string& FilePos, const unsigned int Row, const unsigned int Column)
|
||||
: FilePosition(FilePos)
|
||||
, Row(Row)
|
||||
, Column(Column)
|
||||
{
|
||||
}
|
||||
|
||||
static const std::string getStaticType()
|
||||
{
|
||||
return "MessageMoveIDECursor";
|
||||
}
|
||||
|
||||
const std::string FilePosition;
|
||||
const unsigned int Row;
|
||||
const unsigned int Column;
|
||||
};
|
||||
|
||||
#endif // MESSAGE_MOVE_IDE_CURSOR_H
|
||||
Reference in New Issue
Block a user