author | Alpar Juttner <alpar@cs.elte.hu> |
Tue, 24 Feb 2009 06:51:35 +0000 | |
branch | 1.0 |
changeset 382 | f679c1eb0163 |
permissions | -rw-r--r-- |
alpar@368 | 1 |
/* -*- mode: C++; indent-tabs-mode: nil; -*- |
alpar@368 | 2 |
* |
alpar@368 | 3 |
* This file is a part of LEMON, a generic C++ optimization library. |
alpar@368 | 4 |
* |
alpar@368 | 5 |
* Copyright (C) 2003-2009 |
alpar@368 | 6 |
* Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport |
alpar@368 | 7 |
* (Egervary Research Group on Combinatorial Optimization, EGRES). |
alpar@368 | 8 |
* |
alpar@368 | 9 |
* Permission to use, modify and distribute this software is granted |
alpar@368 | 10 |
* provided that this copyright notice appears in all copies. For |
alpar@368 | 11 |
* precise terms see the accompanying LICENSE file. |
alpar@368 | 12 |
* |
alpar@368 | 13 |
* This software is provided "AS IS" with no warranty of any kind, |
alpar@368 | 14 |
* express or implied, and with no claim as to its suitability for any |
alpar@368 | 15 |
* purpose. |
alpar@368 | 16 |
* |
alpar@368 | 17 |
*/ |
alpar@368 | 18 |
|
alpar@368 | 19 |
#ifndef LEMON_WINDOWS_H |
alpar@368 | 20 |
#define LEMON_WINDOWS_H |
alpar@368 | 21 |
|
alpar@368 | 22 |
#include <string> |
alpar@368 | 23 |
|
alpar@368 | 24 |
namespace lemon { |
alpar@368 | 25 |
namespace bits { |
alpar@368 | 26 |
void getWinProcTimes(double &rtime, |
alpar@368 | 27 |
double &utime, double &stime, |
alpar@368 | 28 |
double &cutime, double &cstime); |
alpar@368 | 29 |
std::string getWinFormattedDate(); |
alpar@368 | 30 |
int getWinRndSeed(); |
alpar@368 | 31 |
} |
alpar@368 | 32 |
} |
alpar@368 | 33 |
|
alpar@368 | 34 |
#endif |