Files
winix/core/function.h
Tomasz Sowa 114b5724f8 added: function: mkdir
git-svn-id: svn://ttmath.org/publicrep/cmslu/trunk@471 e52654a7-88a9-db11-a3e9-0013d4bc506e
2008-12-31 13:36:46 +00:00

54 lines
558 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 headerfilefunction
#define headerfilefunction
#include <iostream>
#include "log.h"
#include "item.h"
class Function
{
public:
enum Code
{
none,
ls,
cat,
node,
emacs,
mkdir,
privileges,
rm,
login,
logout
};
Code code;
Item item;
Function();
Function(const Function & f);
Function & operator=(const Function & f);
};
#endif