/* * 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. * */ #ifndef headerfilecmslucorefunctioncodeparser #define headerfilecmslucorefunctioncodeparser #include #include #include "item.h" class FunctionCodeParser { bool ContentHasOneRow(const Item & item); int ParseValue(const char * s); public: int Parse(const Item & item); }; #endif