source:
GTP/trunk/App/Demos/Illum/PathMap/Radion.cpp
@
896
Revision 896, 357 bytes checked in by szirmay, 19 years ago (diff) |
---|
Rev | Line | |
---|---|---|
[896] | 1 | #include "dxstdafx.h" |
2 | #include "Radion.hpp" | |
3 | #include <iostream> | |
4 | ||
5 | Radion::Radion(void) | |
6 | { | |
7 | } | |
8 | ||
9 | Radion::~Radion(void) | |
10 | { | |
11 | } | |
12 | ||
13 | ||
14 | std::ostream& operator<<(std::ostream& s, const Radion& r) | |
15 | { | |
16 | s.write((char*)&r, sizeof(Radion)); | |
17 | return s; | |
18 | } | |
19 | ||
20 | std::istream& operator>>(std::istream& s, Radion& r) | |
21 | { | |
22 | s.read((char*)&r, sizeof(Radion)); | |
23 | return s; | |
24 | } |
Note: See TracBrowser
for help on using the repository browser.