Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add an altitude concept to describe filter priorities #496

Merged
merged 1 commit into from
Apr 20, 2015

Conversation

codemercenary
Copy link
Contributor

Altitude is now declared on an AutoFilter as a static member of that class, as so:

class MyFilter {
    static const autowiring::altitude altitude = autowiring::altitude::Instrumentation;

    void AutoFilter(const Dec1& dec1);
};

The remainder of the AutoFilter declaration is unchanged. By default, AutoFilters marked Deferred will run at a higher altitude than other filters.

Currently, altitudes can only be easily declared on class-level AutoFilters.

@codemercenary codemercenary force-pushed the feature-altitude branch 2 times, most recently from 5a38ff8 to d76ba68 Compare April 20, 2015 19:02
Altitude is now declared on an AutoFilter as a static member of that class, as so:

```C++
class MyFilter {
    static const autowiring::altitude altitude = autowiring::altitude::Instrumentation;
};
```

The remainder of the AutoFilter declaration is unchanged.  By default, AutoFilters marked `Deferred` will run at a higher altitude than other filters.

Currently, altitudes can only be easily declared on class-level AutoFilters.
gittyupagain pushed a commit that referenced this pull request Apr 20, 2015
Add an altitude concept to describe filter priorities
@gittyupagain gittyupagain merged commit 55837ed into develop Apr 20, 2015
@gittyupagain gittyupagain deleted the feature-altitude branch April 20, 2015 19:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants