2009-12-03 Jeffrey Stedfast <fejj@novell.com>
[moon.git] / tools / generators / HOWTO
blob69d4f880b6c206e3234b8565bdfbd1577df64beb
1 Create a new DependencyProperty
2 ===============================
4 Add a field to the C++ class like this:
6 class Foo {
7         /* @PropertyType=double */
8         static DependencyProperty *BarProperty;
9 };
11 and do 'make' in this directory.
13 There's no need to define the property in any cpp file, nor register it
14 in a foo_init method.
16 See README for more annotations.