34 lines
930 B
C++
34 lines
930 B
C++
// The code is copyrighted 2008 by Carsten Frigaard.
|
|
// All rights placed in public domain under GNU licence V2, 2008
|
|
//
|
|
// © 2008 Carsten Frigaard. Permission to use, copy, modify, and distribute this software
|
|
// and its documentation for any purpose and without fee is hereby granted, provided that
|
|
// the above copyright notice appear in all copies and that both that copyright notice
|
|
// and this permission notice appear in supporting documentation.
|
|
|
|
#ifndef __TOOLSFUN_H__
|
|
#define __TOOLSFUN__H__
|
|
|
|
#include <cassert>
|
|
#include <ctime>
|
|
#include <time.h>
|
|
#include <vector>
|
|
#include <list>
|
|
#include <map>
|
|
#include <string>
|
|
#include <iostream>
|
|
#include <sstream>
|
|
#include <fstream>
|
|
|
|
using namespace std;
|
|
|
|
#include "exception.h"
|
|
#include "stringfun.h"
|
|
#include "args.h"
|
|
#include "funs.h"
|
|
#include "file.h"
|
|
#include "configfile.h"
|
|
#include "templatefun.h"
|
|
#include "reg.h"
|
|
|
|
#endif // __TOOLSFUN_H__
|