Ignore:
Timestamp:
10/21/13 13:39:07 (11 years ago)
Author:
tbretz
Message:
Added some tweaks to allow root cint to parse the C++11 stuff.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Mars/mcore/Queue.h

    r17283 r17292  
    33
    44#include <list>
     5
     6#ifndef __CINT__
    57#include <thread>
    68#include <condition_variable>
     9#else
     10namespace std
     11{
     12    class mutex;
     13    class thread;
     14    class condition_variable;
     15    template<class T> class function<T>;
     16}
     17#endif
     18
    719
    820// The second template argument must support:
Note: See TracChangeset for help on using the changeset viewer.