source: GTP/trunk/App/Demos/Illum/PathMap/Radion.cpp @ 896

Revision 896, 357 bytes checked in by szirmay, 18 years ago (diff)
Line 
1#include "dxstdafx.h"
2#include "Radion.hpp"
3#include <iostream>
4
5Radion::Radion(void)
6{
7}
8
9Radion::~Radion(void)
10{
11}
12
13
14std::ostream& operator<<(std::ostream& s, const Radion& r)
15{
16        s.write((char*)&r, sizeof(Radion));
17        return s;
18}
19
20std::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.