Add member<T> for non-pointer member varibables and stack locals.
[zcpointer.git] / test_helpers.h
1 // Copyright 2016 Google Inc. All rights reserved.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14
15 #ifndef ZCPOINTER_TEST_HELPERS_H_
16 #define ZCPOINTER_TEST_HELPERS_H_
17
18 #include <string>
19 #include <vector>
20
21 #include "zcpointer.h"
22
23 class C {
24 public:
25 C();
26 ~C();
27 void DoThing();
28 };
29
30 class X {
31 public:
32 X(const char* v);
33 ~X();
34
35 zc::ref<C> c() { return &c_; }
36
37 zc::ref<std::vector<C>> vec_c() { return &vec_c_; }
38
39 size_t GetCount() const;
40
41 std::string DoString();
42
43 private:
44 std::string foo_;
45 zc::member<C> c_;
46 zc::member<std::vector<C>> vec_c_;
47 };
48
49 #endif // ZCPOINTER_TEST_HELPERS_H_