AlpacaLibrary/Include/Core/Classes/ChatLineBuffer.hpp

27 lines
605 B
C++
Raw Normal View History

2017-12-25 23:49:48 +00:00
#ifndef CHATLINEBUFFER_HPP_INCLUDED
#define CHATLINEBUFFER_HPP_INCLUDED
#include "../JavaClass/Object.hpp"
#include "../JavaClass/Class.hpp"
#include <cstdint>
#include <vector>
#include "MessageNode.hpp"
2018-03-18 14:38:29 +00:00
namespace Internal
2017-12-25 23:49:48 +00:00
{
2018-03-18 14:38:29 +00:00
class ChatLineBuffer : public Object
{
public:
ChatLineBuffer();
ChatLineBuffer(const void* Obj);
ChatLineBuffer(const ChatLineBuffer& C);
static Class GetClass();
2017-12-25 23:49:48 +00:00
2018-03-18 14:38:29 +00:00
std::int32_t GetLength() const;
std::vector<MessageNode> GetLines() const;
2017-12-25 23:49:48 +00:00
2018-03-18 14:38:29 +00:00
};
}
2017-12-25 23:49:48 +00:00
#endif // CHATLINEBUFFER_HPP_INCLUDED