SEEnvironmentCondition.h
1 /* Distributed under the Apache License, Version 2.0.
2  See accompanying NOTICE file for details.*/
3 #pragma once
4 #include "cdm/engine/SECondition.h"
5 
6 class CDM_DECL SEEnvironmentCondition : public SECondition
7 {
8 public:
9  friend class PBEnvironmentCondition;//friend the serialization class
10 
12  virtual ~SEEnvironmentCondition();
13 
14  static constexpr char const* ConditionType = "Environment";
15  std::string GetConditionType() const override { return ConditionType; }
16 
17  void Clear() override;
18 
19  bool IsValid() const override = 0;
20  bool IsActive() const override = 0;
21 
22 };
Definition: Logger.h:71
Definition: PBEnvironmentConditions.h:11
Definition: SECondition.h:8
virtual void Clear()
Definition: SECondition.cpp:21
static constexpr char const * ConditionType
Definition: SECondition.h:16
Definition: SEEnvironmentCondition.h:7
bool IsActive() const override=0
bool IsValid() const override=0
std::string GetConditionType() const override
Definition: SEEnvironmentCondition.h:15

Distributed under the Apache License, Version 2.0.

See accompanying NOTICE file for details.