-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathIsoPipeline.h
86 lines (75 loc) · 2.54 KB
/
IsoPipeline.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/**
* IsoAlgo - piping Isometric drawing generation Algorithm.
* Copyright (C) 2013 to current year Shing Liu
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* Homepage:
* http://www.cppblog.com/eryar/
*
* Feedback:
*/
#ifndef _ISOPIPELINE_H_
#define _ISOPIPELINE_H_
#include "IsoComponent.h"
#include "IsoItemCode.h"
namespace IsoAlgo
{
/**
* @brief A single PCF can contain the data for a number of pipelines,
* but generally, the piping design system extracts piping data
* for single pipeline only. It should be possible to define the
* the point where the isometric drawing have to be splited.
*
* A single PCF can contain the data for a number of pipelines,
* but generally, the Piping Design System extracts piping data
* for a single pipeline only, and the IsoAlgo system will produce
* isometrics for one pipeline at a time.
*/
class IsoPipeline
{
public:
//! default constructor.
IsoPipeline(void);
//! default destrcutor.
~IsoPipeline(void);
/**
* @brief add attribute for the pipeline.
* @param theKey the description of the attribute.
* @param theValue the value of the attribute.
*/
void AddAttribute(const std::string& theKey, const std::string& theValue);
/**
* @brief add piping component.
* @param theComponent the component belong to the pipeline.
*/
void AddComponent(IsoComponent* theComponent);
/**
* @brief get piping component count.
* @return the component count.
*/
int GetComponentCount(void) const;
/**
* @brief get the component at given index.
* @param theIndex the index.
*/
const IsoComponent* GetComponent(int theIndex) const;
/**
* @brief add the item code data of the pipeline.
* @param theCode the item code.
*/
void AddItemCode(IsoItemCode* theCode);
private:
//! pipeline attributes.
std::map<std::string, std::string> myAttributes;
//! pipeline components.
std::vector<IsoComponent*> myComponents;
//! pipeline item codes for the component.
std::map<std::string, IsoItemCode*> myItemCodes;
};
}
#endif // _ISOPIPELINE_H_