/* * This file is a part of CMSLU -- Content Management System like Unix * and is not publicly distributed * * Copyright (c) 2008, Tomasz Sowa * All rights reserved. * */ #ifndef headerfilefunction #define headerfilefunction #include #include "log.h" #include "item.h" class Function { public: enum Code { none, ls, cat, node, emacs, privileges, rm, login, logout }; Code code; Item item; Function(); Function(const Function & f); Function & operator=(const Function & f); }; #endif