Changeset 8763 in orxonox.OLD
- Timestamp:
- Jun 24, 2006, 2:37:58 AM (18 years ago)
- Location:
- trunk/src/lib/graphics/text_engine
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/graphics/text_engine/font.cc
r8761 r8763 99 99 } 100 100 101 Font::Font(const Font& font) 102 { 103 this->init(); 104 *this = font; 105 } 101 106 102 107 /** -
trunk/src/lib/graphics/text_engine/font.h
r8761 r8763 25 25 Font(const std::string& imageFile); 26 26 Font(char** xpmArray); 27 Font(const Font& font); 27 28 virtual ~Font(); 28 29 … … 64 65 65 66 private: 67 FontDataPointer data; //!< A Data-Pointer to a Font. 68 66 69 static FontDataPointer defaultFontData; //!< a default font, that is used, if other fonts were unable to be loaded. 67 68 FontDataPointer data; //!< A Data-Pointer to a Font.69 70 }; 70 71
Note: See TracChangeset
for help on using the changeset viewer.