mirror of
https://github.com/ksherlock/profuse.git
synced 2024-12-22 20:29:59 +00:00
git-svn-id: https://profuse.googlecode.com/svn/branches/v2@180 aa027e90-d47c-11dd-86d7-074df07e0730
This commit is contained in:
parent
5a0fc071a5
commit
6400af5fc8
@ -1,5 +1,5 @@
|
||||
|
||||
#include "Exception.h"
|
||||
#include <ProFUSE/Exception.h>
|
||||
|
||||
using namespace ProFUSE;
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
#include "Lock.h"
|
||||
#include <ProfUSE/Lock.h>
|
||||
|
||||
using namespace ProFUSE;
|
||||
|
||||
Lock::Lock()
|
||||
{
|
||||
|
@ -3,6 +3,8 @@
|
||||
|
||||
#include <pthread.h>
|
||||
|
||||
namespace ProFUSE {
|
||||
|
||||
class Lock {
|
||||
public:
|
||||
Lock();
|
||||
@ -25,4 +27,7 @@ private:
|
||||
Lock &_lock;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
|
@ -1,6 +1,8 @@
|
||||
#ifndef __AUTO_H__
|
||||
#define __AUTO_H__
|
||||
|
||||
namespace ProFUSE {
|
||||
|
||||
template <class T>
|
||||
class auto_array
|
||||
{
|
||||
@ -94,6 +96,7 @@ private:
|
||||
};
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user