|
Revision 11964, 339 bytes
(checked in by patrickh, 6 years ago)
|
Updated from a few weeks ago relating to a Tweek paper I am writing.
|
- Property svn:eol-style set to
native
- Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
#ifndef FLOATSUBJECT_IDL |
|---|
| 4 |
#define FLOATSUBJECT_IDL |
|---|
| 5 |
|
|---|
| 6 |
#include <tweek/idl/Subject.idl> |
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
module example |
|---|
| 10 |
{ |
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
interface FloatSubject : tweek::Subject |
|---|
| 15 |
{ |
|---|
| 16 |
void setValue(in float param); |
|---|
| 17 |
|
|---|
| 18 |
float getValue(); |
|---|
| 19 |
}; |
|---|
| 20 |
}; |
|---|
| 21 |
|
|---|
| 22 |
#endif //FLOATSUBJECT_IDL |
|---|
| 23 |
|
|---|