sessions are indexed by id and time (last used time) changed: old sessions are deleted parameter: session_max_iddle in the config file added: function 'who' git-svn-id: svn://ttmath.org/publicrep/cmslu/trunk@483 e52654a7-88a9-db11-a3e9-0013d4bc506e
33 lines
542 B
C++
Executable File
33 lines
542 B
C++
Executable File
/*
|
|
* 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 headerfileapptemplates
|
|
#define headerfileapptemplates
|
|
|
|
|
|
#include "../../ezc/src/ezc.h"
|
|
#include "../core/log.h"
|
|
#include "../core/data.h"
|
|
|
|
namespace AppTemplateFunctions
|
|
{
|
|
|
|
|
|
//void CreateAppFunctions(Ezc::Functions & functions);
|
|
|
|
void ReadAppPatterns();
|
|
|
|
void CreateAppFunctions(Ezc::Functions & functions);
|
|
Ezc::Pattern * GetAppPattern();
|
|
|
|
}
|
|
|
|
|
|
#endif
|