Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F103494863
descriptor.h
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sun, Mar 2, 12:00
Size
361 B
Mime Type
text/x-c++
Expires
Tue, Mar 4, 12:00 (2 d)
Engine
blob
Format
Raw Data
Handle
24594353
Attached To
rSYMKIT symkit
descriptor.h
View Options
#ifndef __DESCRIPTOR_H__
#define __DESCRIPTOR_H__
#include <iosfwd>
class
Descriptor
{
public:
// virtual destructor for abtract class
virtual
~
Descriptor
()
{}
virtual
void
update
(
float
)
=
0
;
virtual
void
affiche
(
std
::
ostream
&
)
const
;
};
// ostream forward declaration
std
::
ostream
&
operator
<<
(
std
::
ostream
&
,
const
Descriptor
&
);
#endif
Event Timeline
Log In to Comment