/* * This file is a part of Winix * and is not publicly distributed * * Copyright (c) 2010, Tomasz Sowa * All rights reserved. * */ #ifndef headerfilecmslucontentthread #define headerfilecmslucontentthread #include "functionbase.h" #include "core/thread.h" namespace Fun { class FunThread : public FunctionBase { public: FunThread(); void MakeGet(); private: static bool FunThreadSort(const Thread & t1, const Thread & t2); void CreateSortIndexByDate(); }; } // namespace #endif