/* * This file is a part of Winix * and is not publicly distributed * * Copyright (c) 2010, Tomasz Sowa * All rights reserved. * */ #ifndef headerfilecmslutemplatesmisc #define headerfilecmslutemplatesmisc #include #include #include "localefilter.h" #include "ezc.h" #include "core/user.h" namespace TemplatesFunctions { // table: [language][file] typedef std::vector > Patterns; void print_date_nice(Ezc::Info & i, const tm & rtm); void print_user_name(Ezc::Info & i, const User * puser, const std::string & guest_name); int ParseCKeditorFun(); // those functions from here are used in the second thread too void Read(Patterns & patterns, size_t pat, Locale & locale, LocaleFilter & locale_filter, const char * file, bool delete_white = false); void ClearPatterns(Patterns & patterns, size_t len); } // namespace TemplatesFunctions #endif