forked from ahmidou/SpliceAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTypeDefs.h
More file actions
24 lines (20 loc) · 695 Bytes
/
TypeDefs.h
File metadata and controls
24 lines (20 loc) · 695 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright 2010-2013 Fabric Engine Inc. All rights reserved.
#ifndef __FabricSpliceImpl_TYPEDEFS_H__
#define __FabricSpliceImpl_TYPEDEFS_H__
#include <vector>
#include <map>
#include <boost/shared_ptr.hpp>
#include <boost/weak_ptr.hpp>
namespace FabricSpliceImpl
{
/// Forward declarations
class DGGraphImpl;
typedef boost::shared_ptr<DGGraphImpl> DGGraphImplPtr;
typedef boost::weak_ptr<DGGraphImpl> DGGraphImplWeakPtr;
typedef std::vector<DGGraphImplPtr> DGGraphImplPtrVector;
class DGPortImpl;
typedef boost::shared_ptr<DGPortImpl> DGPortImplPtr;
typedef boost::weak_ptr<DGPortImpl> DGPortImplWeakPtr;
typedef std::vector<DGPortImplPtr> DGPortImplPtrVector;
};
#endif