OpenTwin 0.1
OpenTwin
 
Loading...
Searching...
No Matches
IC.h
Go to the documentation of this file.
1#ifndef IC_H_
2#define IC_H_
3
4#include <vector>
5#include <string>
6#include "Layer.h"
7
8class IC{
9private:
10 std::string name; // name of the ic
11 std::vector<Layer> layers; // layer of which the ic is build up
12
13public:
14 IC(std::string name_, std::vector<Layer> layers_);
15
16 std::string getName();
17 std::vector<Layer> getLayers();
18
19};
20
21#endif
22
Definition IC.h:8
std::vector< Layer > getLayers()
Definition IC.cpp:7
IC(std::string name_, std::vector< Layer > layers_)
Definition IC.cpp:3
std::string getName()
Definition IC.cpp:5