Artec 3D Scanning SDK  2.0
EntryInfo.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include "EntryType.h"
4 
5 #include <artec/sdk/base/Uuid.h>
7 
8 namespace artec { namespace sdk { namespace project {
9 
10 /// Information on project entry (scan or model), e.g. its type and identifier
11 struct EntryInfo
12 {
13  base::Uuid uuid; ///< Unique identifier
14  EntryType type; ///< Entry type
15  unsigned long long size; ///< Entry size in bytes
16 }; // struct EntryInfo
17 
18 } } }
base::Uuid uuid
Unique identifier.
Definition: EntryInfo.h:13
EntryType
Type of the project entry (scan or model)
Definition: EntryType.h:6
unsigned long long size
Entry size in bytes.
Definition: EntryInfo.h:15
EntryType type
Entry type.
Definition: EntryInfo.h:14
Point2< Type > project(const Point3< Type > &point, const GenericMatrix< 3, 4, Type > &m)
Definition: Matrix.h:759
Information on project entry (scan or model), e.g. its type and identifier.
Definition: EntryInfo.h:11