source: cpp/frams/param/mutparamiface.h @ 154

Last change on this file since 154 was 138, checked in by sz, 10 years ago

genetic operator example - frams/_demos/genooper_test.cpp

  • Property svn:eol-style set to native
File size: 530 bytes
Line 
1// This file is a part of the Framsticks GDK.
2// Copyright (C) 2002-2014  Maciej Komosinski and Szymon Ulatowski.  See LICENSE.txt for details.
3// Refer to http://www.framsticks.com/ for further information.
4
5#ifndef _MUTPARAM_H_
6#define _MUTPARAM_H_
7
8#include <frams/util/callbacks.h>
9#include "param.h"
10
11class MutableParamInterface: public virtual ParamInterface
12{
13public:
14Callback onadd;
15Callback ondelete;
16Callback onchange;
17Callback ongroupadd;
18Callback ongroupdelete;
19Callback ongroupchange;
20Callback onactivate;
21};
22
23#endif
Note: See TracBrowser for help on using the repository browser.