/* * This file is a part of CMSLU -- Content Management System like Unix * and is not publicly distributed * * Copyright (c) 2008-2009, Tomasz Sowa * All rights reserved. * */ #include "function.h" Function::Function() { code = FUN_NONE; } void Function::Clear() { code = FUN_NONE; item.Clear(); } Function::Function(const Function & f) { code = f.code; item = f.item; } Function & Function::operator=(const Function & f) { code = f.code; item = f.item; return *this; }