mirror of
https://github.com/pocoproject/poco.git
synced 2025-04-21 00:11:50 +02:00

fix: remove executable flag and change back to 100644 (was 100755) Signed-off-by: Roger Meier <r.meier@siemens.com>
54 lines
907 B
C++
54 lines
907 B
C++
//
|
|
// RequestMessage.h
|
|
//
|
|
// $Id$
|
|
//
|
|
// Library: MongoDB
|
|
// Package: MongoDB
|
|
// Module: RequestMessage
|
|
//
|
|
// Definition of the RequestMessage class.
|
|
//
|
|
// Copyright (c) 2012, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef MongoDB_RequestMessage_INCLUDED
|
|
#define MongoDB_RequestMessage_INCLUDED
|
|
|
|
|
|
#include "Poco/MongoDB/MongoDB.h"
|
|
#include "Poco/MongoDB/Message.h"
|
|
#include <ostream>
|
|
|
|
|
|
namespace Poco {
|
|
namespace MongoDB {
|
|
|
|
|
|
class MongoDB_API RequestMessage : public Message
|
|
/// Base class for a request
|
|
{
|
|
public:
|
|
RequestMessage(MessageHeader::OpCode opcode);
|
|
/// Constructor
|
|
|
|
virtual ~RequestMessage();
|
|
/// Destructor
|
|
|
|
void send(std::ostream& ostr);
|
|
/// Sends the request to stream
|
|
|
|
protected:
|
|
virtual void buildRequest(BinaryWriter& ss) = 0;
|
|
};
|
|
|
|
|
|
} } // namespace Poco::MongoDB
|
|
|
|
|
|
#endif //MongoDB_RequestMessage_INCLUDED
|