COIN-OR::LEMON - Graph Library

source: lemon/lemon/bits/windows.h @ 1407:76349d8212d3

Last change on this file since 1407:76349d8212d3 was 1340:f70f688d9ef9, checked in by Alpar Juttner <alpar@…>, 9 years ago

Replace #define WIN32 (#595)

File size: 1.1 KB
Line 
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
25namespace 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
Note: See TracBrowser for help on using the repository browser.