|
Revision 11510, 328 bytes
(checked in by patrickh, 6 years ago)
|
Added new diagrams and updated the project for new files and directories
added since the last update.
|
- Property svn:eol-style set to
native
- Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
#ifndef FLOATSUBJECTIMPL_H |
|---|
| 4 |
#define FLOATSUBJECTIMPL_H |
|---|
| 5 |
#include "SubjectImpl.h" |
|---|
| 6 |
#include "FloatSubject.h" |
|---|
| 7 |
|
|---|
| 8 |
class FloatSubjectImpl : public tweek::SubjectImpl, POA_example::FloatSubject |
|---|
| 9 |
{ |
|---|
| 10 |
public: |
|---|
| 11 |
|
|---|
| 12 |
FloatSubjectImpl(); |
|---|
| 13 |
|
|---|
| 14 |
float getValue(); |
|---|
| 15 |
|
|---|
| 16 |
void setValue(float); |
|---|
| 17 |
}; |
|---|
| 18 |
#endif //FLOATSUBJECTIMPL_H |
|---|