implemented more image related functions

git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@59 0fc631ac-6414-0410-93d0-97cfa31319b6
This commit is contained in:
twanvl
2006-10-29 22:13:11 +00:00
parent f46b0b6b7b
commit 601af4c778
11 changed files with 377 additions and 33 deletions
+3
View File
@@ -41,6 +41,9 @@ class Age {
/// Compare two ages, smaller means earlier
inline bool operator < (Age a) const { return age < a.age; }
/// A number corresponding to the age
inline LONG get() const { return age; }
private:
/// This age
LONG age;