summaryrefslogtreecommitdiff
path: root/euler/include/std/condition-variable.hpp
blob: 0568373d1c5afd29de936950759d325bcc839a10 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include <mutex>

namespace std {

  class condition_variable {

    //TODO

  };

}