root/bdm/osutils.h @ 93

Revision 93, 0.6 kB (checked in by smidl, 16 years ago)

oprava loggeru

  • Property svn:eol-style set to native
Line 
1//
2// C++ Interface: osutils
3//
4// Description: Agr
5//
6//
7// Author: smidl <smidl@utia.cas.cz>, (C) 2008
8//
9// Copyright: See COPYING file that comes with this distribution
10//
11//
12
13#include <itpp/itbase.h>
14using namespace std;
15
16/*!
17@brief Function concats name of a directory and file
18*/
19void get_fname ( char* filename, std::string &dirname, std::string &f );
20
21/*!
22@brief Function creates a directory and raises it_error if it is not possible
23
24@param dirname name of the directory to be created
25@param rewrite if true then existence of the directory is not an error
26*/
27void makedir(string &dirname, bool rewrite = true);
Note: See TracBrowser for help on using the browser.