Salome HOME
Issue #273: Add copyright string
[modules/shaper.git] / src / ModelAPI / ModelAPI_Result.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        ModelAPI_Result.cpp
4 // Created:     07 Jul 2014
5 // Author:      Mikhail PONIKAROV
6
7 #include "ModelAPI_Result.h"
8
9 bool ModelAPI_Result::isConcealed() {
10   return myIsConcealed;
11 }
12
13 void ModelAPI_Result::setIsConcealed(const bool theValue) {
14   myIsConcealed = theValue;
15 }
16
17 ModelAPI_Result::ModelAPI_Result() {
18 }
19
20 ModelAPI_Result::~ModelAPI_Result() {
21 }