Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102819932
planet.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
Mon, Feb 24, 12:51
Size
741 B
Mime Type
text/x-c++
Expires
Wed, Feb 26, 12:51 (1 d, 18 h)
Engine
blob
Format
Raw Data
Handle
24418561
Attached To
R7571 SP4E-TB-TL-FR
planet.hh
View Options
#ifndef __PLANET__HH__
#define __PLANET__HH__
/* -------------------------------------------------------------------------- */
#include "particle.hh"
/* -------------------------------------------------------------------------- */
#include <iostream>
/* -------------------------------------------------------------------------- */
//! Class for planet
class Planet : public Particle {
// Methods
public:
//! Get name
std::string& getName() { return name; }
// Inherited methods
public:
void initself(std::istream& stream) override;
void printself(std::ostream& stream) const override;
private:
std::string name;
};
/* -------------------------------------------------------------------------- */
#endif //__PLANET__HH__
Event Timeline
Log In to Comment