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

Last change on this file since 535 was 286, checked in by Maciej Komosinski, 9 years ago

Updated headers

  • Property svn:eol-style set to native
File size: 492 bytes
Line 
1// This file is a part of Framsticks SDK.  http://www.framsticks.com/
2// Copyright (C) 1999-2015  Maciej Komosinski and Szymon Ulatowski.
3// See LICENSE.txt for details.
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.