Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F120502613
lm_object.hh
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
Fri, Jul 4, 20:40
Size
543 B
Mime Type
text/x-c++
Expires
Sun, Jul 6, 20:40 (2 d)
Engine
blob
Format
Raw Data
Handle
27198387
Attached To
rLIBMULTISCALE LibMultiScale
lm_object.hh
View Options
#ifndef __LIBMULTISCALE_LM_OBJECT_HH__
#define __LIBMULTISCALE_LM_OBJECT_HH__
/* -------------------------------------------------------------------------- */
#include "lm_globals.hh"
/**
* Class LMObject
* objects having an ID
*/
__BEGIN_LIBMULTISCALE__
class LMObject {
public:
LMObject(const LMID &id) : id(id){};
virtual const LMID &getID() const { return id; };
virtual void setID(const LMID &id) { this->id = id; };
private:
//! general id
LMID id;
};
__END_LIBMULTISCALE__
#endif // __LIBMULTISCALE_LM_OBJECT_HH__
Event Timeline
Log In to Comment