blob: 3c29d3a012e999f2be0833d0f29b910898eec565 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// Author: Maurizio Loreti, aka MLO or (HAM) I3NOO
// Work: University of Padova - Department of Physics
// Via F. Marzolo, 8 - 35131 PADOVA - Italy
// Phone: +39 (049) 827-7216 FAX: +39 (049) 827-7102
// EMail: loreti@pd.infn.it
// WWW: http://www.pd.infn.it/~loreti/mlo.html
//
// -------------------------------------------------------------------
//
// $Id: cleandir.hh,v 1.1 2001/01/22 10:43:43 loreti Exp $
//
// -------------------------------------------------------------------
#ifndef CLEANDIR_H_
#define CLEANDIR_H_
#include <string>
void scan_dir(const std::string &);
#endif // CLEANDIR_H_
|