Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2010-11-16 21:51:10 +0000
committerStijn Buys <ingar@osirion.org>2010-11-16 21:51:10 +0000
commit40e7cd6de7955021a8b7109cbf413e782ea95222 (patch)
tree4cbba8c8315b19cdc14e3c6c53d894ab9ee403e8 /src/model/mapfile.h
parentb58da165c4ae841859ee7c600ec27f7207181a0e (diff)
add 'angles' key support for .map classes, added warning to depricated keys
Diffstat (limited to 'src/model/mapfile.h')
-rw-r--r--src/model/mapfile.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/model/mapfile.h b/src/model/mapfile.h
index 4cea7f0..7ee47d3 100644
--- a/src/model/mapfile.h
+++ b/src/model/mapfile.h
@@ -141,11 +141,17 @@ private:
/// clear class bounding box
void clear_bbox();
+ /// print 'unkown class' warning message to the console
void unknown_class() const;
+ /// print 'unkown key' warning message to the console
void unknown_key() const;
+ /// print 'unkown value' warning message to the console
void unknown_value() const;
+
+ /// print 'depricated key' warning message to the console
+ void warn_depricated() const;
/// list of planes for the current brush
std::vector<Face *> planes;