* Fixed a bug in Ottoman: the parameterless constructor didn't initialize _file, leaving it garbage and leading to a crash if you deleted the object without saving.
* This bug was being hidden by another bug in saveAs which didn't delete the old _file.
* Also added a versionsChanged hook that subclasses can override.
5 * Created by Jens Alfke on 9/2/09.
6 * Copyright 2009 Jens Alfke. All rights reserved.
7 * BSD-Licensed: See the file "LICENSE.txt" for details.
10 #include <gtest/gtest.h> // Get gtest from <http://code.google.com/p/googletest/>
16 std::ostream& operator<< (std::ostream &out, const Blob&);
18 void shuffle(int a[], int n, unsigned seed =0);
27 Timer (const char *operation, int divisor =1);
29 double elapsed() {return now() - _time;}
32 const char *_operation;
34 double _cpuTime, _time;