14 lines
409 B
C++
14 lines
409 B
C++
/* Copyright (C) 2013 Interactive Brokers LLC. All rights reserved. This code is subject to the terms
|
|
* and conditions of the IB API Non-Commercial License or the IB API Commercial License, as applicable. */
|
|
|
|
#pragma once
|
|
class TWSAPIDLLEXP EMessage
|
|
{
|
|
std::vector<char> data;
|
|
public:
|
|
EMessage(const std::vector<char> &data);
|
|
const char* begin(void) const;
|
|
const char* end(void) const;
|
|
};
|
|
|