All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
BatchedTextRange.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include "Text.h"
6 #include "BatchedTextAppearance.h"
7 
8 
9 
10 namespace Eegeo
11 {
12  namespace Text
13  {
15  {
16  public:
17  BatchedTextRange(const BatchedTextAppearance& textAppearance, int quadOffset, int quadCount);
18 
19  const BatchedTextAppearance& GetTextAppearance() const { return m_textAppearance; }
20  int GetQuadOffset() const { return m_quadOffset; }
21  int GetQuadCount() const { return m_quadCount; }
22 
23  private:
24  BatchedTextAppearance m_textAppearance;
25  int m_quadOffset;
26  int m_quadCount;
27  };
28  }
29 }