| 79 | } |
| 80 | |
| 81 | VectorVariable::VectorVariable( |
| 82 | const std::string& name, |
| 83 | const std::string& type, |
| 84 | const std::string& defaultValue) |
| 85 | { |
| 86 | name_ = name; |
| 87 | type_ = type; |
| 88 | defaultValue_ = defaultValue; |
| 89 | isBuffer_ = false; |
| 90 | constant_ = false; |
| 91 | |
| 92 | copyOf_ = NULL; |
| 93 | |
| 94 | flags_ = 0; |
| 95 | hostPtr_ = NULL; |
| 96 | |
| 97 | nElems_ = NULL; |
| 98 | inc_ = NULL; |
| 99 | off_ = NULL; |
| 100 | } |
| 101 | |
| 102 | Variable::~Variable() |
| 103 | { |
nothing calls this directly
no outgoing calls
no test coverage detected