mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 03:02:30 +00:00
13 lines
301 B
C++
13 lines
301 B
C++
|
|
#ifndef UI_C_SIMPLE_MESSAGE_SCROLL_FRAME_HPP
|
||
|
|
#define UI_C_SIMPLE_MESSAGE_SCROLL_FRAME_HPP
|
||
|
|
|
||
|
|
#include "ui/CSimpleHyperlinkedFrame.hpp"
|
||
|
|
|
||
|
|
class CSimpleMessageScrollFrame : public CSimpleHyperlinkedFrame {
|
||
|
|
public:
|
||
|
|
// Member functions
|
||
|
|
CSimpleMessageScrollFrame(CSimpleFrame* parent);
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|