|
1 | 1 | /*
|
2 |
| - * Copyright (c) 2000, 2020, Oracle and/or its affiliates. |
| 2 | + * Copyright (c) 2000, 2023, Oracle and/or its affiliates. |
3 | 3 | *
|
4 | 4 | * Licensed under the Universal Permissive License v 1.0 as shown at
|
5 |
| - * http://oss.oracle.com/licenses/upl. |
| 5 | + * https://oss.oracle.com/licenses/upl. |
6 | 6 | */
|
7 | 7 | #ifndef COH_TEST_TEST_FILTER_HPP
|
8 | 8 | #define COH_TEST_TEST_FILTER_HPP
|
|
16 | 16 |
|
17 | 17 | COH_OPEN_NAMESPACE2(common, test)
|
18 | 18 |
|
19 |
| -using coherence::util::Filter; |
20 | 19 | using coherence::io::pof::annotation::Portable;
|
21 | 20 | using coherence::io::pof::annotation::PortableProperty;
|
| 21 | +using coherence::util::Filter; |
22 | 22 |
|
23 | 23 | /**
|
24 | 24 | * Simple filter for validation of custom Filters with view-scheme configurations.
|
25 | 25 | * Wouldn't recommend its use elsewhere; it doesn't do much.
|
26 | 26 | *
|
27 | 27 | * @author rl 2019.05.14
|
28 | 28 | * @since 12.2.1.4
|
29 |
| - */ |
| 29 | + */ |
30 | 30 | class TestFilter
|
31 | 31 | : public class_spec<TestFilter,
|
32 | 32 | extends<Object>,
|
@@ -72,7 +72,7 @@ class TestFilter
|
72 | 72 | {
|
73 | 73 | return m_cCount;
|
74 | 74 | }
|
75 |
| - |
| 75 | + |
76 | 76 | void setCount(int32_t cCount)
|
77 | 77 | {
|
78 | 78 | m_cCount = cCount;
|
@@ -102,7 +102,6 @@ class TestFilter
|
102 | 102 | MemberView<String> f_vsAttr;
|
103 | 103 | int32_t m_cCount;
|
104 | 104 | };
|
105 |
| - |
106 | 105 | COH_REGISTER_CLASS(TypedClass<TestFilter>::create()->annotate(Portable::create())
|
107 | 106 | ->declare(COH_CONSTRUCTOR2(TestFilter, String::View, BoxHandle<const Integer32>))
|
108 | 107 | ->declare(COH_PROPERTY (TestFilter, Attr, String::View))
|
|
0 commit comments