X-Git-Url: http://developer.intra2net.com/git/?p=libt2n;a=blobdiff_plain;f=src%2Fcommand.hxx;h=9d14ff457c812b7423c42c5c4aeede0fd7658811;hp=98f5004a2858be43743cfffac97a2df8da415a0c;hb=63291e4f84b127b479bee0710860e5fdbfbd5b11;hpb=7087e18783f91d2b889e880462d1d1da24831c28 diff --git a/src/command.hxx b/src/command.hxx index 98f5004..9d14ff4 100644 --- a/src/command.hxx +++ b/src/command.hxx @@ -19,8 +19,10 @@ #ifndef __LIBT2N_COMMAND #define __LIBT2N_COMMAND +#include + #include -#include +#include namespace libt2n { @@ -41,6 +43,7 @@ class result }; } //BOOST_IS_ABSTRACT(libt2n::result) +BOOST_CLASS_TRACKING(libt2n::result, boost::serialization::track_never) namespace libt2n { @@ -56,12 +59,12 @@ class command public: /// this calls the wanted target function on the server - virtual result* operator()() = 0; + virtual result* operator()()=0; virtual ~command() {} }; } // namespace libt2n //BOOST_IS_ABSTRACT(libt2n::command) - +BOOST_CLASS_TRACKING(libt2n::command, boost::serialization::track_never) #endif