00001 //------------------------------------------------------------------------ 00002 // 00003 // Joe Kniss 00004 // 3-21-03 00005 // ________ ____ ___ 00006 // | \ / | / / 00007 // +---+ \/ |/ / 00008 // +--+| |\ /| < 00009 // | || | \ / | |\ \ 00010 // | | \/ | | \ \ 00011 // \_____| |__| \__\ 00012 // Copyright 2003 00013 // Joe Michael Kniss 00014 // <<< jmk@cs.utah.edu >>> 00015 // "All Your Base are Belong to Us" 00016 //------------------------------------------------------------------------- 00017 00018 //Serialize.h 00019 00020 00021 #ifndef __SERIALIZE_DOT_H 00022 #define __SERIALIZE_DOT_H 00023 00024 #include <iostream> 00025 00026 template<class T> 00027 class SerialSave { 00028 public: 00029 SerialSave(std::ostream &os) : _os(os) {} 00030 00031 bool serialize(T &s) {} 00032 00033 00034 protected: 00035 std::ostream &_os; 00036 }; 00037 00038 00039 #endif 00040