mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
21 lines
386 B
C++
21 lines
386 B
C++
#include "box_banner_view.h"
|
|
|
|
namespace Statistics {
|
|
|
|
BoxBannerView::BoxBannerView() :
|
|
m_calculationName(nullptr, 0.0f, 0.5f),
|
|
m_calculationValue(1.0f, 0.5f)
|
|
{
|
|
}
|
|
|
|
int BoxBannerView::numberOfSubviews() const {
|
|
return 2;
|
|
}
|
|
|
|
TextView * BoxBannerView::textViewAtIndex(int index) {
|
|
TextView * textViews[2] = {&m_calculationName, &m_calculationValue};
|
|
return textViews[index];
|
|
}
|
|
|
|
}
|