aboutsummaryrefslogtreecommitdiff
path: root/tests/golden_output/aidl-test-interface-cpp-source/gen/include/android/aidl/tests/extension/MyExt2.h
blob: cfd04c639b1130830970115a5cb9cc0b7f7efd39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#pragma once

#include <android/aidl/tests/extension/MyExt.h>
#include <android/binder_to_string.h>
#include <binder/Parcel.h>
#include <binder/Status.h>
#include <cstdint>
#include <string>
#include <tuple>
#include <utils/String16.h>

namespace android::aidl::tests::extension {
class MyExt;
}  // namespace android::aidl::tests::extension
namespace android {
namespace aidl {
namespace tests {
namespace extension {
class MyExt2 : public ::android::Parcelable {
public:
  int32_t a = 0;
  ::android::aidl::tests::extension::MyExt b;
  ::std::string c;
  inline bool operator!=(const MyExt2& rhs) const {
    return std::tie(a, b, c) != std::tie(rhs.a, rhs.b, rhs.c);
  }
  inline bool operator<(const MyExt2& rhs) const {
    return std::tie(a, b, c) < std::tie(rhs.a, rhs.b, rhs.c);
  }
  inline bool operator<=(const MyExt2& rhs) const {
    return std::tie(a, b, c) <= std::tie(rhs.a, rhs.b, rhs.c);
  }
  inline bool operator==(const MyExt2& rhs) const {
    return std::tie(a, b, c) == std::tie(rhs.a, rhs.b, rhs.c);
  }
  inline bool operator>(const MyExt2& rhs) const {
    return std::tie(a, b, c) > std::tie(rhs.a, rhs.b, rhs.c);
  }
  inline bool operator>=(const MyExt2& rhs) const {
    return std::tie(a, b, c) >= std::tie(rhs.a, rhs.b, rhs.c);
  }

  ::android::status_t readFromParcel(const ::android::Parcel* _aidl_parcel) final;
  ::android::status_t writeToParcel(::android::Parcel* _aidl_parcel) const final;
  static const ::android::String16& getParcelableDescriptor() {
    static const ::android::StaticString16 DESCRIPTOR (u"android.aidl.tests.extension.MyExt2");
    return DESCRIPTOR;
  }
  inline std::string toString() const {
    std::ostringstream os;
    os << "MyExt2{";
    os << "a: " << ::android::internal::ToString(a);
    os << ", b: " << ::android::internal::ToString(b);
    os << ", c: " << ::android::internal::ToString(c);
    os << "}";
    return os.str();
  }
};  // class MyExt2
}  // namespace extension
}  // namespace tests
}  // namespace aidl
}  // namespace android