poisson_demo.h
1 /*
2  @copyright Russell Standish 2000-2013
3  @author Russell Standish
4  This file is part of Classdesc
5 
6  Open source licensed under the MIT license. See LICENSE for details.
7 */
8 
9 /* this is the per-pin data */
10 struct cell: Object<cell, GRAPHCODE_NS::object>
11 {
12  double my_value;
13  void update(const cell&);
14  cell(): my_value(drand()) {}
15 };
Definition: poisson_demo.h:10