/* * This file is a part of Winix * and is not publicly distributed * * Copyright (c) 2010-2014, Tomasz Sowa * All rights reserved. * */ #ifndef headerfile_winix_functions_last #define headerfile_winix_functions_last #include "functionbase.h" namespace Winix { namespace Fun { class Last : public FunctionBase { public: Last(); bool HasAccess(); private: }; } // namespace } // namespace Winix #endif