lemon/bits/windows.h
author Alpar Juttner <alpar@cs.elte.hu>
Tue, 28 Apr 2015 18:07:07 +0200
changeset 1340 f70f688d9ef9
parent 1270 dceba191c00d
permissions -rw-r--r--
Replace #define WIN32 (#595)
     1 /* -*- mode: C++; indent-tabs-mode: nil; -*-
     2  *
     3  * This file is a part of LEMON, a generic C++ optimization library.
     4  *
     5  * Copyright (C) 2003-2013
     6  * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
     7  * (Egervary Research Group on Combinatorial Optimization, EGRES).
     8  *
     9  * Permission to use, modify and distribute this software is granted
    10  * provided that this copyright notice appears in all copies. For
    11  * precise terms see the accompanying LICENSE file.
    12  *
    13  * This software is provided "AS IS" with no warranty of any kind,
    14  * express or implied, and with no claim as to its suitability for any
    15  * purpose.
    16  *
    17  */
    18 
    19 #ifndef LEMON_BITS_WINDOWS_H
    20 #define LEMON_BITS_WINDOWS_H
    21 
    22 #include <lemon/config.h>
    23 #include <string>
    24 
    25 namespace lemon {
    26   namespace bits {
    27     void getWinProcTimes(double &rtime,
    28                          double &utime, double &stime,
    29                          double &cutime, double &cstime);
    30     std::string getWinFormattedDate();
    31     int getWinRndSeed();
    32 
    33     class WinLock {
    34     public:
    35       WinLock();
    36       ~WinLock();
    37       void lock();
    38       void unlock();\
    39     private:
    40       void *_repr;
    41     };
    42   }
    43 }
    44 
    45 #endif