X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fserializable.hpp;h=74adedc26b1e7a54648cb58f55a08c154d356a52;hb=9e7e803e384ed7bf0f5ccf9a4c381dd13b6a01d1;hp=6534db16cf7265ad8483ad862319a259782a9377;hpb=7a3f75400c0518b72f04fe4209145301191ba151;p=supertux.git diff --git a/src/serializable.hpp b/src/serializable.hpp index 6534db16c..74adedc26 100644 --- a/src/serializable.hpp +++ b/src/serializable.hpp @@ -1,7 +1,7 @@ // $Id$ // // SuperTux - A Jump'n Run -// Copyright (C) 2004 Matthias Braun // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License @@ -19,16 +19,15 @@ #ifndef SUPERTUX_SERIALIZABLE_H #define SUPERTUX_SERIALIZABLE_H -#include "lisp/writer.hpp" +namespace lisp { class Writer; } class Serializable { public: virtual ~Serializable() { } - + virtual void write(lisp::Writer& writer) = 0; }; #endif /*SUPERTUX_SERIALIZABLE_H*/ -