git-svn-id: https://profuse.googlecode.com/svn/branches/v2@180 aa027e90-d47c-11dd-86d7-074df07e0730

This commit is contained in:
ksherlock 2009-12-15 22:07:45 +00:00
parent 5a0fc071a5
commit 6400af5fc8
4 changed files with 13 additions and 3 deletions

View File

@ -1,5 +1,5 @@
#include "Exception.h"
#include <ProFUSE/Exception.h>
using namespace ProFUSE;

View File

@ -1,4 +1,6 @@
#include "Lock.h"
#include <ProfUSE/Lock.h>
using namespace ProFUSE;
Lock::Lock()
{

View File

@ -3,6 +3,8 @@
#include <pthread.h>
namespace ProFUSE {
class Lock {
public:
Lock();
@ -25,4 +27,7 @@ private:
Lock &_lock;
};
#endif
}
#endif

View File

@ -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