Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 23, 2006, 6:58:01 PM (18 years ago)
Author:
bensch
Message:

better, but still not running, yet

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/fontdata/src/lib/graphics/text_engine/font.h

    r8753 r8754  
    2121
    2222public:
     23  Font();
    2324  Font(const std::string& fontFile,
    2425       unsigned int renderSize);
     
    2627  Font(char** xpmArray);
    2728  virtual ~Font();
     29
     30  Font& operator=(const Font& font) { this->data = font.data; return *this; };
     31  bool operator==(const Font& font) const { return this->data == font.data; };
    2832
    2933  //  font
Note: See TracChangeset for help on using the changeset viewer.