Changeset 852
- Timestamp:
- May 1, 2007, 9:26:52 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/random/random.h
r831 r852 78 78 public: 79 79 80 virtual ~RNG(void);81 82 80 /// 83 81 /// @brief Get an instance of the random number generator. … … 146 144 private: 147 145 RNG(void); 146 147 /** 148 \brief Not implemented. 149 150 This copy contructor is not implemented. The constructor is 151 declared in order to avoid compiler generated default copy 152 constructor. 153 */ 154 RNG(const RNG&); 155 156 virtual ~RNG(void); 148 157 149 158 static RNG* instance_;
Note: See TracChangeset
for help on using the changeset viewer.