/* -*- C++ -*- * Copyright ©2004 Hugo Mills * * This software is distributed under the terms of the GNU GPL v3 * For more information on the GPL, see the file COPYING or * visit http://www.gnu.org/ * * This software is distributed without warranty */ #ifndef XFORBIT_RANDOM_H #define XFORBIT_RANDOM_H #include "magellan/xforbit.h" class XfOrbit_Random : public XfOrbit { public: XfOrbit_Random(); virtual ~XfOrbit_Random() { } virtual void reset(void); static XfOrbit* parser( ConfigLexer* lex, const std::string& type, const std::string& subtype = "" ); }; #endif