OLD | NEW |
1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 PDFium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
6 | 6 |
7 #ifndef _BC_ENCODERCONTEXT_H_ | 7 #ifndef _BC_ENCODERCONTEXT_H_ |
8 #define _BC_ENCODERCONTEXT_H_ | 8 #define _BC_ENCODERCONTEXT_H_ |
9 class CBC_SymbolShapeHint; | 9 class CBC_SymbolShapeHint; |
10 class CBC_SymbolInfo; | 10 class CBC_SymbolInfo; |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 private: | 43 private: |
44 int32_t getTotalMessageCharCount(); | 44 int32_t getTotalMessageCharCount(); |
45 | 45 |
46 private: | 46 private: |
47 SymbolShapeHint m_shape; | 47 SymbolShapeHint m_shape; |
48 CBC_Dimension* m_minSize; | 48 CBC_Dimension* m_minSize; |
49 CBC_Dimension* m_maxSize; | 49 CBC_Dimension* m_maxSize; |
50 int32_t m_skipAtEnd; | 50 int32_t m_skipAtEnd; |
51 }; | 51 }; |
52 #endif | 52 #endif |
OLD | NEW |