Mercurial > defical
diff defical-c/src/basic/inefficient.h @ 0:ebed2bd0d300
Initial import from svn. History be damned.
author | Edho P. Arief <me@myconan.net> |
---|---|
date | Fri, 02 Apr 2010 23:11:57 +0700 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/defical-c/src/basic/inefficient.h Fri Apr 02 23:11:57 2010 +0700 @@ -0,0 +1,23 @@ +#ifdef _MSC_VER +#include <windows.h> +#include "../msvc/stdint.h" +#else +#include <stdint.h> +#include <sys/time.h> +#endif +#include <time.h> +#include <string> +#include <stdio.h> +using namespace std; + +string uint32_t_to_str(uint32_t myint); +double stdev(uint32_t * numbers); + +class gettime; + +class gettime +{ +public: + char time_v[20],time_s[16]; + gettime(); +};