Skip to content

Commit

Permalink
Restyle
Browse files Browse the repository at this point in the history
  • Loading branch information
andreilitvin committed Apr 26, 2024
1 parent ceea7b8 commit d134fab
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/app/interaction-model/IterationTypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,12 @@ class AttributeTreeIterator
virtual EndpointId FirstEndpoint() = 0;
virtual EndpointId NextEndpoint(EndpointId before) = 0;

virtual ClusterEntry FirstCluster(EndpointId endpoint) = 0;
virtual ClusterEntry NextCluster(const ConcreteClusterPath & before) = 0;
virtual ClusterEntry FirstCluster(EndpointId endpoint) = 0;
virtual ClusterEntry NextCluster(const ConcreteClusterPath & before) = 0;
virtual std::optional<ClusterInfo> GetClusterInfo(const ConcreteClusterPath & path) = 0;

virtual AttributeEntry FirstAttribute(const ConcreteClusterPath & cluster) = 0;
virtual AttributeEntry NextAttribute(const ConcreteAttributePath & before) = 0;
virtual AttributeEntry FirstAttribute(const ConcreteClusterPath & cluster) = 0;
virtual AttributeEntry NextAttribute(const ConcreteAttributePath & before) = 0;
virtual std::optional<AttributeInfo> GetAttributeInfo(const ConcreteAttributePath & path) = 0;
};

Expand Down
2 changes: 1 addition & 1 deletion src/app/interaction-model/OperationTypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ enum class InvokeFlags : uint32_t
struct InvokeRequest : OperationRequest
{
ConcreteCommandPath path;
std::optional<GroupId> groupRequestId; // set if and only if this was a group request
std::optional<GroupId> groupRequestId; // set if and only if this was a group request
BitFlags<InvokeFlags> invokeFlags;
};

Expand Down

0 comments on commit d134fab

Please sign in to comment.