Clarify -c descriptions.
[rawdog/.git] / rawdoglib / plugins.py
index 2844e8c63a9d66f6264c6dff20a3aaa205692702..f491b05fd89495c1356001d61a58050702cf9907 100644 (file)
 
 import os, os.path, imp
 
+class Box:
+       """Utility class that holds a mutable value. Useful for passing
+       immutable types by reference."""
+       def __init__(self, value = None):
+               self.value = value
+
 plugin_count = 0
 
 def load_plugins(dir, config):